Skip to content

chore(dependencies): Bump the github-actions group across 1 directory with 7 updates - #210

Merged
kuraisle merged 1 commit into
mainfrom
dependabot/github_actions/github-actions-c4aaa1a0b4
Aug 11, 2026
Merged

chore(dependencies): Bump the github-actions group across 1 directory with 7 updates#210
kuraisle merged 1 commit into
mainfrom
dependabot/github_actions/github-actions-c4aaa1a0b4

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Contributor

Bumps the github-actions group with 7 updates in the / directory:

Package From To
health-informatics-uon/workflows/.github/workflows/pr-title.yml 1.4.10 1.5.0
actions/setup-python 6 7
MishaKav/pytest-coverage-comment 1.10.0 1.11.0
actions/setup-node 6 7
health-informatics-uon/workflows/.github/workflows/semantic-release.yml 1.4.10 1.5.0
health-informatics-uon/workflows/.github/workflows/publish-container.yml 1.4.10 1.5.0
health-informatics-uon/workflows/.github/workflows/semver-container.yml 1.4.10 1.5.0

Updates health-informatics-uon/workflows/.github/workflows/pr-title.yml from 1.4.10 to 1.5.0

Release notes

Sourced from health-informatics-uon/workflows/.github/workflows/pr-title.yml's releases.

1.5.0

1.5.0 (2026-08-05)

Features

1.4.13

1.4.13 (2026-08-03)

Bug Fixes

  • dependencies: Bump docker/login-action from 4.5.1 to 4.6.0 in the github-actions group (#47) (3cbaa20)

1.4.12

1.4.12 (2026-07-27)

Bug Fixes

  • dependencies: Bump the github-actions group with 2 updates (#46) (f1ec5a5)

1.4.11

1.4.11 (2026-07-20)

Bug Fixes

  • dependencies: Bump the github-actions group with 2 updates (#44) (c61b188)
Commits
  • 625d60c feat: Add docker build args (#49)
  • 3cbaa20 fix(dependencies): Bump docker/login-action from 4.5.1 to 4.6.0 in the github...
  • f1ec5a5 fix(dependencies): Bump the github-actions group with 2 updates (#46)
  • c424adb docs: Clarify release system (#45)
  • c61b188 fix(dependencies): Bump the github-actions group with 2 updates (#44)
  • See full diff in compare view

Updates actions/setup-python from 6 to 7

Release notes

Sourced from actions/setup-python's releases.

v7.0.0

What's Changed

Enhancements

Bug Fix

Dependency Upgrade

New Contributors

Full Changelog: actions/setup-python@v6...v7.0.0

v6.3.0

What's Changed

Enhancement

Dependency update

Documentation

New Contributors

Full Changelog: actions/setup-python@v6.2.0...v6.3.0

v6.2.0

What's Changed

Dependency Upgrades

... (truncated)

Commits

Updates MishaKav/pytest-coverage-comment from 1.10.0 to 1.11.0

Release notes

Sourced from MishaKav/pytest-coverage-comment's releases.

v1.11.0

What's Changed

  • add show-failed-tests input that lists failed tests (up to max-failed-tests) in the comment as a collapsible block with the test name linked to its file, a short failure reason and the pytest output
  • add max-failed-tests input to cap the number of shown failed tests (30 by default, in total across all junit files, shared with multiple-files mode)
  • add failedTestsHtml output with the rendered block, empty when the option is disabled or all tests pass

Test Results

Tests Skipped Failures Errors Time
4 0 💤 4 ❌ 0 🔥 0.122s ⏱️
def test_wrong_title():
        # genuine failing assertion with a string diff
        post = get_post(1)
>       assert post["title"] == "my first post"
E       AssertionError: assert 'first post' == 'my first post'
E
E         - my first post
E         ? ---
E         + first post
def test_fetch_latest_post_times_out():
        # genuine timeout raised by the module under test
>       post = fetch_latest_post(timeout=0.03)
timeout = 0.03
def fetch_latest_post(timeout=FETCH_TIMEOUT_SECONDS):
    """Simulate polling a slow posts API until the timeout expires."""
    deadline = time.monotonic() + timeout
    while time.monotonic() < deadline:
        time.sleep(0.01)

>       raise TimeoutError(f"posts API d…

... (truncated)

Changelog

Sourced from MishaKav/pytest-coverage-comment's changelog.

Changelog of the Pytest Coverage Comment

Pytest Coverage Comment 1.11.0

Release Date: 2026-08-02

Changes

  • add show-failed-tests input that lists failed tests (up to max-failed-tests) in the comment as a collapsible block with the test name linked to its file, a short failure reason and the pytest output (#293), requested in #26
  • add max-failed-tests input to cap the number of shown failed tests (30 by default, in total across all junit files, shared with multiple-files mode) (#293)
  • add failedTestsHtml output with the rendered block, empty when the option is disabled or all tests pass (#293)

Pytest Coverage Comment 1.10.1

Release Date: 2026-08-01

Changes

  • bump dev dependencies: @types/node 26.1.2, @vitest/coverage-v8 4.1.10, vitest 4.1.10, eslint 10.8.0, typescript-eslint 8.65.0, prettier 3.9.6 (#290)
  • bump brace-expansion from 5.0.6 to 5.0.8 (#287)
  • bump schneegans/dynamic-badges-action from 1.8.0 to 1.9.0 in workflows (#289)

Pytest Coverage Comment 1.10.0

Release Date: 2026-07-05

Changes

  • add support for parsing the JSON coverage report from coverage json via the new pytest-json-coverage-path input, including branch coverage and partial-branch arrows (line->target, line->exit) that match coverage report -m (#286)

Pytest Coverage Comment 1.9.0

Release Date: 2026-07-04

Changes

  • fix the Coverage percentage when branch coverage is enabled — it now combines statement and branch coverage and rounds the same way coverage report does, instead of showing 100% when branches are only partially covered (#284), thanks to @​mschoettle for contribution

Pytest Coverage Comment 1.8.0

Release Date: 2026-06-27

Changes

  • show partially-covered branches as line->target arrows in the Missing column when parsing XML coverage (pytest-xml-coverage-path), matching the output of coverage report --show-missing (#274), thanks to @​mschoettle for contribution

Pytest Coverage Comment 1.7.3

Release Date: 2026-06-27

... (truncated)

Commits

Updates actions/setup-node from 6 to 7

Release notes

Sourced from actions/setup-node's releases.

v7.0.0

What's Changed

Enhancements:

Bug fixes:

Documentation updates:

Dependency update:

New Contributors

Full Changelog: actions/setup-node@v6...v7.0.0

v6.5.0

What's Changed

Full Changelog: actions/setup-node@v6.4.0...v6.5.0

v6.4.0

What's Changed

Dependency updates:

New Contributors

Full Changelog: actions/setup-node@v6...v6.4.0

v6.3.0

What's Changed

Enhancements:

... (truncated)

Commits
  • 8207627 Migrate to ESM and upgrade dependencies (#1574)
  • 04be95c Add cache-primary-key and cache-matched-key as outputs (#1577)
  • 7c2c68d docs: Update caching recommendations to mitigate cache poisoning risks (#1567)
  • 6a61c03 Merge pull request #1569 from jasongin/update-actions-cache-5.1.0
  • 30eb73b Resolve high-severity audit issues
  • 4e1a87a Update dist
  • 360237f Strict equality
  • 4f8aac5 Bump @​actions/cache to 5.1.0, log cache write denied
  • f4a67bb Only use mirrorToken in getManifest if it's provided (#1548)
  • 0355742 Remove dummy NODE_AUTH_TOKEN export (#1558)
  • Additional commits viewable in compare view

Updates health-informatics-uon/workflows/.github/workflows/semantic-release.yml from 1.4.10 to 1.5.0

Release notes

Sourced from health-informatics-uon/workflows/.github/workflows/semantic-release.yml's releases.

1.5.0

1.5.0 (2026-08-05)

Features

1.4.13

1.4.13 (2026-08-03)

Bug Fixes

  • dependencies: Bump docker/login-action from 4.5.1 to 4.6.0 in the github-actions group (#47) (3cbaa20)

1.4.12

1.4.12 (2026-07-27)

Bug Fixes

  • dependencies: Bump the github-actions group with 2 updates (#46) (f1ec5a5)

1.4.11

1.4.11 (2026-07-20)

Bug Fixes

  • dependencies: Bump the github-actions group with 2 updates (#44) (c61b188)
Commits
  • 625d60c feat: Add docker build args (#49)
  • 3cbaa20 fix(dependencies): Bump docker/login-action from 4.5.1 to 4.6.0 in the github...
  • f1ec5a5 fix(dependencies): Bump the github-actions group with 2 updates (#46)
  • c424adb docs: Clarify release system (#45)
  • c61b188 fix(dependencies): Bump the github-actions group with 2 updates (#44)
  • See full diff in compare view

Updates health-informatics-uon/workflows/.github/workflows/publish-container.yml from 1.4.10 to 1.5.0

Release notes

Sourced from health-informatics-uon/workflows/.github/workflows/publish-container.yml's releases.

1.5.0

1.5.0 (2026-08-05)

Features

1.4.13

1.4.13 (2026-08-03)

Bug Fixes

  • dependencies: Bump docker/login-action from 4.5.1 to 4.6.0 in the github-actions group (#47) (3cbaa20)

1.4.12

1.4.12 (2026-07-27)

Bug Fixes

  • dependencies: Bump the github-actions group with 2 updates (#46) (f1ec5a5)

1.4.11

1.4.11 (2026-07-20)

Bug Fixes

  • dependencies: Bump the github-actions group with 2 updates (#44) (c61b188)
Commits
  • 625d60c feat: Add docker build args (#49)
  • 3cbaa20 fix(dependencies): Bump docker/login-action from 4.5.1 to 4.6.0 in the github...
  • f1ec5a5 fix(dependencies): Bump the github-actions group with 2 updates (#46)
  • c424adb docs: Clarify release system (#45)
  • c61b188 fix(dependencies): Bump the github-actions group with 2 updates (#44)
  • See full diff in compare view

Updates health-informatics-uon/workflows/.github/workflows/semver-container.yml from 1.4.10 to 1.5.0

Release notes

Sourced from health-informatics-uon/workflows/.github/workflows/semver-container.yml's releases.

1.5.0

1.5.0 (2026-08-05)

Features

1.4.13

1.4.13 (2026-08-03)

Bug Fixes

  • dependencies: Bump docker/login-action from 4.5.1 to 4.6.0 in the github-actions group (#47) (3cbaa20)

1.4.12

1.4.12 (2026-07-27)

Bug Fixes

  • dependencies: Bump the github-actions group with 2 updates (#46) (f1ec5a5)

1.4.11

1.4.11 (2026-07-20)

Bug Fixes

  • dependencies: Bump the github-actions group with 2 updates (#44) (c61b188)
Commits
  • 625d60c feat: Add docker build args (#49)
  • 3cbaa20 fix(dependencies): Bump docker/login-action from 4.5.1 to 4.6.0 in the github...
  • f1ec5a5 fix(dependencies): Bump the github-actions group with 2 updates (#46)
  • c424adb docs: Clarify release system (#45)
  • c61b188 fix(dependencies): Bump the github-actions group with 2 updates (#44)
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

… with 7 updates

Bumps the github-actions group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [health-informatics-uon/workflows/.github/workflows/pr-title.yml](https://github.com/health-informatics-uon/workflows) | `1.4.10` | `1.5.0` |
| [actions/setup-python](https://github.com/actions/setup-python) | `6` | `7` |
| [MishaKav/pytest-coverage-comment](https://github.com/mishakav/pytest-coverage-comment) | `1.10.0` | `1.11.0` |
| [actions/setup-node](https://github.com/actions/setup-node) | `6` | `7` |
| [health-informatics-uon/workflows/.github/workflows/semantic-release.yml](https://github.com/health-informatics-uon/workflows) | `1.4.10` | `1.5.0` |
| [health-informatics-uon/workflows/.github/workflows/publish-container.yml](https://github.com/health-informatics-uon/workflows) | `1.4.10` | `1.5.0` |
| [health-informatics-uon/workflows/.github/workflows/semver-container.yml](https://github.com/health-informatics-uon/workflows) | `1.4.10` | `1.5.0` |



Updates `health-informatics-uon/workflows/.github/workflows/pr-title.yml` from 1.4.10 to 1.5.0
- [Release notes](https://github.com/health-informatics-uon/workflows/releases)
- [Changelog](https://github.com/Health-Informatics-UoN/workflows/blob/main/release.config.js)
- [Commits](Health-Informatics-UoN/workflows@4c23389...625d60c)

Updates `actions/setup-python` from 6 to 7
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v6...v7)

Updates `MishaKav/pytest-coverage-comment` from 1.10.0 to 1.11.0
- [Release notes](https://github.com/mishakav/pytest-coverage-comment/releases)
- [Changelog](https://github.com/MishaKav/pytest-coverage-comment/blob/main/CHANGELOG.md)
- [Commits](MishaKav/pytest-coverage-comment@fd9adbd...09c28b6)

Updates `actions/setup-node` from 6 to 7
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@v6...v7)

Updates `health-informatics-uon/workflows/.github/workflows/semantic-release.yml` from 1.4.10 to 1.5.0
- [Release notes](https://github.com/health-informatics-uon/workflows/releases)
- [Changelog](https://github.com/Health-Informatics-UoN/workflows/blob/main/release.config.js)
- [Commits](Health-Informatics-UoN/workflows@1.4.10...1.5.0)

Updates `health-informatics-uon/workflows/.github/workflows/publish-container.yml` from 1.4.10 to 1.5.0
- [Release notes](https://github.com/health-informatics-uon/workflows/releases)
- [Changelog](https://github.com/Health-Informatics-UoN/workflows/blob/main/release.config.js)
- [Commits](Health-Informatics-UoN/workflows@1.4.10...1.5.0)

Updates `health-informatics-uon/workflows/.github/workflows/semver-container.yml` from 1.4.10 to 1.5.0
- [Release notes](https://github.com/health-informatics-uon/workflows/releases)
- [Changelog](https://github.com/Health-Informatics-UoN/workflows/blob/main/release.config.js)
- [Commits](Health-Informatics-UoN/workflows@1.4.10...1.5.0)

---
updated-dependencies:
- dependency-name: health-informatics-uon/workflows/.github/workflows/pr-title.yml
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: actions/setup-python
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: MishaKav/pytest-coverage-comment
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: actions/setup-node
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: health-informatics-uon/workflows/.github/workflows/semantic-release.yml
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: health-informatics-uon/workflows/.github/workflows/publish-container.yml
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: health-informatics-uon/workflows/.github/workflows/semver-container.yml
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Aug 10, 2026
@kuraisle
kuraisle merged commit 293a537 into main Aug 11, 2026
4 checks passed
@kuraisle
kuraisle deleted the dependabot/github_actions/github-actions-c4aaa1a0b4 branch August 11, 2026 09:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant