Skip to content

Bump the github-actions group with 19 updates - #495

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/github-actions-d0d4311ae2
Closed

Bump the github-actions group with 19 updates#495
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/github-actions-d0d4311ae2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 1, 2026

Copy link
Copy Markdown

Bumps the github-actions group with 19 updates:

Package From To
actions/checkout 4 7
actions/upload-artifact 4.3.0 7.0.1
actions/download-artifact 4.1.1 8.0.1
hendrikmuhs/ccache-action 1.2.17 1.2.23
step-security/changed-files 45.0.1 47.0.5
actions/setup-python 5.1.1 7.0.0
EnricoMi/publish-unit-test-result-action/macos 2.18.0 2.24.0
actions/github-script 6.4.1 9.0.0
maxim-lobanov/setup-xcode 1.6.0 1.7.0
docker/login-action 3.3.0 4.6.0
aminya/setup-cpp 1.1.1 1.8.1
actions/setup-node 4.2.0 7.0.0
actions/labeler 4.3.0 7.0.0
actions/attest-build-provenance 1.0.0 4.2.2
pypa/gh-action-pypi-publish 1.12.4 1.14.2
ossf/scorecard-action 2.4.1 2.4.4
actions/cache 5.1.0 6.1.0
actions/upload-pages-artifact 4.0.0 5.0.0
actions/deploy-pages 4.0.5 5.0.0

Updates actions/checkout from 4 to 7

Release notes

Sourced from actions/checkout's releases.

v7.0.0

What's Changed

New Contributors

Full Changelog: actions/checkout@v6.0.3...v7.0.0

v6.1.0

What's Changed

https://github.blog/changelog/2026-06-18-safer-pull_request_target-defaults-for-github-actions-checkout/ for more details about this breaking change

Full Changelog: actions/checkout@v6.0.3...v6.1.0

v6.0.3

What's Changed

New Contributors

Full Changelog: actions/checkout@v6...v6.0.3

v6.0.2

What's Changed

Full Changelog: actions/checkout@v6.0.1...v6.0.2

v6.0.1

What's Changed

... (truncated)

Commits

Updates actions/upload-artifact from 4.3.0 to 7.0.1

Release notes

Sourced from actions/upload-artifact's releases.

v7.0.1

What's Changed

Full Changelog: actions/upload-artifact@v7...v7.0.1

v7.0.0

v7 What's new

Direct Uploads

Adds support for uploading single files directly (unzipped). Callers can set the new archive parameter to false to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The name parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.

ESM

To support new versions of the @actions/* packages, we've upgraded the package to ESM.

What's Changed

New Contributors

Full Changelog: actions/upload-artifact@v6...v7.0.0

v6.0.0

v6 - What's new

[!IMPORTANT] actions/upload-artifact@v6 now runs on Node.js 24 (runs.using: node24) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.

Node.js 24

This release updates the runtime to Node.js 24. v5 had preliminary support for Node.js 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24.

What's Changed

Full Changelog: actions/upload-artifact@v5.0.0...v6.0.0

v5.0.0

What's Changed

... (truncated)

Commits
  • 043fb46 Merge pull request #797 from actions/yacaovsnc/update-dependency
  • 634250c Include changes in typespec/ts-http-runtime 0.3.5
  • e454baa Readme: bump all the example versions to v7 (#796)
  • 74fad66 Update the readme with direct upload details (#795)
  • bbbca2d Support direct file uploads (#764)
  • 589182c Upgrade the module to ESM and bump dependencies (#762)
  • 47309c9 Merge pull request #754 from actions/Link-/add-proxy-integration-tests
  • 02a8460 Add proxy integration test
  • b7c566a Merge pull request #745 from actions/upload-artifact-v6-release
  • e516bc8 docs: correct description of Node.js 24 support in README
  • Additional commits viewable in compare view

Updates actions/download-artifact from 4.1.1 to 8.0.1

Release notes

Sourced from actions/download-artifact's releases.

v8.0.1

What's Changed

Full Changelog: actions/download-artifact@v8...v8.0.1

v8.0.0

v8 - What's new

[!IMPORTANT] actions/download-artifact@v8 has been migrated to an ESM module. This should be transparent to the caller but forks might need to make significant changes.

[!IMPORTANT] Hash mismatches will now error by default. Users can override this behavior with a setting change (see below).

Direct downloads

To support direct uploads in actions/upload-artifact, the action will no longer attempt to unzip all downloaded files. Instead, the action checks the Content-Type header ahead of unzipping and skips non-zipped files. Callers wishing to download a zipped file as-is can also set the new skip-decompress parameter to true.

Enforced checks (breaking)

A previous release introduced digest checks on the download. If a download hash didn't match the expected hash from the server, the action would log a warning. Callers can now configure the behavior on mismatch with the digest-mismatch parameter. To be secure by default, we are now defaulting the behavior to error which will fail the workflow run.

ESM

To support new versions of the @actions/* packages, we've upgraded the package to ESM.

What's Changed

Full Changelog: actions/download-artifact@v7...v8.0.0

v7.0.0

v7 - What's new

[!IMPORTANT] actions/download-artifact@v7 now runs on Node.js 24 (runs.using: node24) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.

Node.js 24

This release updates the runtime to Node.js 24. v6 had preliminary support for Node 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24.

What's Changed

... (truncated)

Commits
  • 3e5f45b Add regression tests for CJK characters (#471)
  • e6d03f6 Add a regression test for artifact name + content-type mismatches (#472)
  • 70fc10c Merge pull request #461 from actions/danwkennedy/digest-mismatch-behavior
  • f258da9 Add change docs
  • ccc058e Fix linting issues
  • bd7976b Add a setting to specify what to do on hash mismatch and default it to error
  • ac21fcf Merge pull request #460 from actions/danwkennedy/download-no-unzip
  • 15999bf Add note about package bumps
  • 974686e Bump the version to v8 and add release notes
  • fbe48b1 Update test names to make it clearer what they do
  • Additional commits viewable in compare view

Updates hendrikmuhs/ccache-action from 1.2.17 to 1.2.23

Release notes

Sourced from hendrikmuhs/ccache-action's releases.

v1.2.23

What's Changed

New Contributors

Full Changelog: hendrikmuhs/ccache-action@v1.2.22...v1.2.23

v1.2.22

What's Changed

Full Changelog: hendrikmuhs/ccache-action@v1.2.21...v1.2.22

v1.2.21

What's Changed

New Contributors

Full Changelog: hendrikmuhs/ccache-action@v1.2...v1.2.21

v1.2.20

What's Changed

... (truncated)

Commits

Updates step-security/changed-files from 45.0.1 to 47.0.5

Release notes

Sourced from step-security/changed-files's releases.

v47.0.5

What's Changed

Full Changelog: step-security/changed-files@v47...v47.0.5

v47.0.1

What's Changed

Full Changelog: step-security/changed-files@v46...v47.0.1

v46.0.5

What's Changed

New Contributors

Full Changelog: step-security/changed-files@v45...v46.0.5

Commits
  • 2e07db7 Merge pull request #205 from step-security/yarn-audit-fix
  • 9d26a83 fix: apply audit fixes
  • acfdd74 Merge pull request #204 from step-security/yarn-audit-fix
  • e85e3f8 fix: apply audit fixes
  • e332b00 Merge pull request #203 from step-security/yarn-audit-fix
  • 0488bac fix: apply audit fixes
  • 05b2e46 Merge pull request #202 from step-security/yarn-audit-fix
  • 57a2c40 fix: apply audit fixes
  • 0bb80d0 Merge pull request #201 from step-security/yarn-audit-fix
  • 37a098f fix: apply audit fixes
  • Additional commits viewable in compare view

Updates actions/setup-python from 5.1.1 to 7.0.0

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 EnricoMi/publish-unit-test-result-action/macos from 2.18.0 to 2.24.0

Release notes

Sourced from EnricoMi/publish-unit-test-result-action/macos's releases.

v2.24.0

Adds the following improvements:

  • Fix: use env var indirection for inputs #737
  • Upgrading dependencies

Full Changelog: EnricoMi/publish-unit-test-result-action@v2.23.0...v2.24.0

v2.23.0

Adds the following improvements:

Full Changelog: EnricoMi/publish-unit-test-result-action@v2.22.0...v2.23.0

v2.22.0

Adds the following improvements:

  • Upgrade all Python dependencies to latest version #710

Full Changelog: EnricoMi/publish-unit-test-result-action@v2.21.0...v2.22.0

v2.21.0

Adds the following improvements:

  • Add Docker action to allow setting Docker registry and image #688
  • Fix class name matching for NUnit3 #689
  • Upgrade all Python dependencies to latest version #695
  • Fix @2 tag in README.md to @v2 #687

Full Changelog: EnricoMi/publish-unit-test-result-action@v2.20.0...v2.21.0

v2.20.0

Adds the following improvements:

  • Add action typing #653
  • Isolate PIP cache used by composite actions #668
  • Fix for empty <system-out> and <system-err> #667
  • Deprecate github_token_actor option, auto-detect actor #661
  • Use and recommend !cancelled() instead of always() #659
  • Add deprecationMessage to action.yml for deprecated inputs #654
  • Resolve regex library warnings #660

Full Changelog: EnricoMi/publish-unit-test-result-action@v2.19.0...v2.20.0

v2.19.0

Adds the following improvements:

  • Add option to verify SSL/TLS connection (#638)
  • Mention composite replacement in README.md (#647)
  • Quote $PYTHON_BIN in deprecated composite action (#646)
Commits
  • d0a4676 Releasing v2.24.0
  • 473c3f2 Upgrade GitHub Actions in action.yml files (#776)
  • 49f3291 Add Ubuntu 26.04, add arm versions (#775)
  • 4ed2544 Bump emibcn/badge-action from 2.0.3 to 2.0.4 (#758)
  • f2856f6 Bump docker/metadata-action from 5.10.0 to 6.1.0 (#760)
  • 5ec6b13 Bump docker/setup-qemu-action from 3.7.0 to 4.1.0 (#759)
  • a199e4e Use env var indirection for Docker action inputs (#737)
  • 60b1d8c Bump github/codeql-action from 4.32.4 to 4.36.0 (#757)
  • b1d9536 Bump docker/build-push-action from 6.19.2 to 7.2.0 (#756)
  • 17f8820 Revert "Create and add workflow to enhance dependabot GHA upgrade PRs (#761)"
  • Additional commits viewable in compare view

Updates actions/github-script from 6.4.1 to 9.0.0

Release notes

Sourced from actions/github-script's releases.

v9.0.0

New features:

  • getOctokit factory function — Available directly in the script context. Create additional authenticated Octokit clients with different tokens for multi-token workflows, GitHub App tokens, and cross-org access. See Creating additional clients with getOctokit for details and examples.
  • Orchestration ID in user-agent — The ACTIONS_ORCHESTRATION_ID environment variable is automatically appended to the user-agent string for request tracing.

Breaking changes:

  • require('@actions/github') no longer works in scripts. The upgrade to @actions/github v9 (ESM-only) means require('@actions/github') will fail at runtime. If you previously used patterns like const { getOctokit } = require('@actions/github') to create secondary clients, use the new injected getOctokit function instead — it's available directly in the script context with no imports needed.
  • getOctokit is now an injected function parameter. Scripts that declare const getOctokit = ... or let getOctokit = ... will get a SyntaxError because JavaScript does not allow const/let redeclaration of function parameters. Use the injected getOctokit directly, or use var getOctokit = ... if you need to redeclare it.
  • If your script accesses other @actions/github internals beyond the standard github/octokit client, you may need to update those references for v9 compatibility.

What's Changed

New Contributors

Full Changelog: actions/github-script@v8.0.0...v9.0.0

v8.0.0

What's Changed

  • Update Node.js versi...

    Description has been truncated

Bumps the github-actions group with 19 updates:

| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `4` | `7` |
| [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.3.0` | `7.0.1` |
| [actions/download-artifact](https://github.com/actions/download-artifact) | `4.1.1` | `8.0.1` |
| [hendrikmuhs/ccache-action](https://github.com/hendrikmuhs/ccache-action) | `1.2.17` | `1.2.23` |
| [step-security/changed-files](https://github.com/step-security/changed-files) | `45.0.1` | `47.0.5` |
| [actions/setup-python](https://github.com/actions/setup-python) | `5.1.1` | `7.0.0` |
| [EnricoMi/publish-unit-test-result-action/macos](https://github.com/enricomi/publish-unit-test-result-action) | `2.18.0` | `2.24.0` |
| [actions/github-script](https://github.com/actions/github-script) | `6.4.1` | `9.0.0` |
| [maxim-lobanov/setup-xcode](https://github.com/maxim-lobanov/setup-xcode) | `1.6.0` | `1.7.0` |
| [docker/login-action](https://github.com/docker/login-action) | `3.3.0` | `4.6.0` |
| [aminya/setup-cpp](https://github.com/aminya/setup-cpp) | `1.1.1` | `1.8.1` |
| [actions/setup-node](https://github.com/actions/setup-node) | `4.2.0` | `7.0.0` |
| [actions/labeler](https://github.com/actions/labeler) | `4.3.0` | `7.0.0` |
| [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) | `1.0.0` | `4.2.2` |
| [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.12.4` | `1.14.2` |
| [ossf/scorecard-action](https://github.com/ossf/scorecard-action) | `2.4.1` | `2.4.4` |
| [actions/cache](https://github.com/actions/cache) | `5.1.0` | `6.1.0` |
| [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `4.0.0` | `5.0.0` |
| [actions/deploy-pages](https://github.com/actions/deploy-pages) | `4.0.5` | `5.0.0` |


Updates `actions/checkout` from 4 to 7
- [Release notes](https://github.com/actions/checkout/releases)
- [Commits](actions/checkout@v4...v7)

Updates `actions/upload-artifact` from 4.3.0 to 7.0.1
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v4.3.0...043fb46)

Updates `actions/download-artifact` from 4.1.1 to 8.0.1
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v4.1.1...3e5f45b)

Updates `hendrikmuhs/ccache-action` from 1.2.17 to 1.2.23
- [Release notes](https://github.com/hendrikmuhs/ccache-action/releases)
- [Commits](hendrikmuhs/ccache-action@a1209f8...d62db5f)

Updates `step-security/changed-files` from 45.0.1 to 47.0.5
- [Release notes](https://github.com/step-security/changed-files/releases)
- [Commits](step-security/changed-files@3dbe17c...2e07db7)

Updates `actions/setup-python` from 5.1.1 to 7.0.0
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v5.1.1...5fda3b9)

Updates `EnricoMi/publish-unit-test-result-action/macos` from 2.18.0 to 2.24.0
- [Release notes](https://github.com/enricomi/publish-unit-test-result-action/releases)
- [Commits](EnricoMi/publish-unit-test-result-action@170bf24...d0a4676)

Updates `actions/github-script` from 6.4.1 to 9.0.0
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v6.4.1...3a2844b)

Updates `maxim-lobanov/setup-xcode` from 1.6.0 to 1.7.0
- [Release notes](https://github.com/maxim-lobanov/setup-xcode/releases)
- [Commits](maxim-lobanov/setup-xcode@60606e2...ed7a3b1)

Updates `docker/login-action` from 3.3.0 to 4.6.0
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](docker/login-action@9780b0c...dbcb813)

Updates `aminya/setup-cpp` from 1.1.1 to 1.8.1
- [Release notes](https://github.com/aminya/setup-cpp/releases)
- [Commits](aminya/setup-cpp@17c1155...8170d66)

Updates `actions/setup-node` from 4.2.0 to 7.0.0
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@1d0ff46...8207627)

Updates `actions/labeler` from 4.3.0 to 7.0.0
- [Release notes](https://github.com/actions/labeler/releases)
- [Commits](actions/labeler@ac9175f...bf12e9b)

Updates `actions/attest-build-provenance` from 1.0.0 to 4.2.2
- [Release notes](https://github.com/actions/attest-build-provenance/releases)
- [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md)
- [Commits](actions/attest-build-provenance@897ed5e...4d10147)

Updates `pypa/gh-action-pypi-publish` from 1.12.4 to 1.14.2
- [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases)
- [Commits](pypa/gh-action-pypi-publish@76f52bc...dc37677)

Updates `ossf/scorecard-action` from 2.4.1 to 2.4.4
- [Release notes](https://github.com/ossf/scorecard-action/releases)
- [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md)
- [Commits](ossf/scorecard-action@f49aabe...2d11466)

Updates `actions/cache` from 5.1.0 to 6.1.0
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@caa2961...55cc834)

Updates `actions/upload-pages-artifact` from 4.0.0 to 5.0.0
- [Release notes](https://github.com/actions/upload-pages-artifact/releases)
- [Commits](actions/upload-pages-artifact@7b1f4a7...fc324d3)

Updates `actions/deploy-pages` from 4.0.5 to 5.0.0
- [Release notes](https://github.com/actions/deploy-pages/releases)
- [Commits](actions/deploy-pages@d6db901...cd2ce8f)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/upload-artifact
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/download-artifact
  dependency-version: 8.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: hendrikmuhs/ccache-action
  dependency-version: 1.2.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
- dependency-name: step-security/changed-files
  dependency-version: 47.0.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/setup-python
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: EnricoMi/publish-unit-test-result-action/macos
  dependency-version: 2.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: actions/github-script
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: maxim-lobanov/setup-xcode
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: docker/login-action
  dependency-version: 4.6.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: aminya/setup-cpp
  dependency-version: 1.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: actions/setup-node
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/labeler
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/attest-build-provenance
  dependency-version: 4.2.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: pypa/gh-action-pypi-publish
  dependency-version: 1.14.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: ossf/scorecard-action
  dependency-version: 2.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
- dependency-name: actions/cache
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/upload-pages-artifact
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/deploy-pages
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  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 Sep 1, 2026
@sc-sw-publisher
sc-sw-publisher deleted the dependabot/github_actions/github-actions-d0d4311ae2 branch September 2, 2026 12:59
@dependabot @github

dependabot Bot commented on behalf of github Sep 2, 2026

Copy link
Copy Markdown
Author

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

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