Skip to content

Bump the all-actions group across 1 directory with 7 updates#2475

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/github_actions/all-actions-1ad563f3ef
Open

Bump the all-actions group across 1 directory with 7 updates#2475
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/github_actions/all-actions-1ad563f3ef

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 12, 2026

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

Package From To
actions/download-artifact 4.3.0 8.0.1
digicert/code-signing-software-trust-action 1.1.0 1.2.1
actions/upload-artifact 4.6.2 7.0.1
docker/login-action 4.0.0 4.1.0
docker/build-push-action 7.0.0 7.1.0
EmbarkStudios/cargo-deny-action 2.0.15 2.0.16
ruby/setup-ruby 1.293.0 1.300.0

Updates actions/download-artifact from 4.3.0 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 digicert/code-signing-software-trust-action from 1.1.0 to 1.2.1

Release notes

Sourced from digicert/code-signing-software-trust-action's releases.

v1.2.1 - Dependency Security Enhancements

[v1.2.1] - Dependency Security Enhancements

Description
Includes security updates to transitive dependencies to improve the overall security posture of the action without impacting functionality.

Upgrade steps

  • Upgrade to this version to benefit from the latest dependency updates and security improvements.

Platform compatibility changes

  • None

New features

  • None

Bug fixes

  • None

Improvements

  • Updated transitive dependencies to newer versions for improved stability and security.

Security

  • Included routine dependency updates to incorporate upstream fixes and improvements.

Compatibility notes

  • No changes to runtime or platform compatibility.
  • Fully backward compatible with existing workflows.

Runtime & Dependency Updates

[v1.2.0] - Runtime & Dependency Updates

Description
Updates the action to use Node 24 (GitHub Actions deprecation notice) as the runtime and upgrades several transitive dependencies to their latest secure versions. This ensures continued compatibility with GitHub Actions runners following the deprecation of Node 20 (EOL April 2026) and the transition of GitHub-hosted runners to Node 24 by default starting June 2, 2026.

Why upgrade?

If you are seeing the following deprecation warning in your workflow runs:

Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: digicert/code-signing-software-trust-action. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026.

Upgrading to v1.2.0 will resolve this warning.

Upgrade steps

  • Update your workflows to replace your uses value with: uses: digicert/code-signing-software-trust-action@v1.2.0
  • If using macOS runners, update workflows from macos-13 to macos-14 or macos-latest.

Platform compatibility changes

  • macOS 13 and lower are no longer supported due to Node 24 OS-level incompatibility.
  • Workflows using macos-13 will fail and must be updated.

New features

... (truncated)

Commits
  • fae23a4 Merge pull request #34 from digicert/DOSTM-9259
  • 20d2c7d chore(deps): update dependencies for brace-expansion, fast-xml-parser, handle...
  • 96e9240 Merge pull request #33 from digicert/DOSTM-9185_version_bump
  • aec1163 chore: bump runtime and dependency versions
  • See full diff in compare view

Updates actions/upload-artifact from 4.6.2 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 docker/login-action from 4.0.0 to 4.1.0

Release notes

Sourced from docker/login-action's releases.

v4.1.0

Full Changelog: docker/login-action@v4.0.0...v4.1.0

Commits
  • 4907a6d Merge pull request #930 from docker/dependabot/npm_and_yarn/aws-sdk-dependenc...
  • 1e233e6 chore: update generated content
  • 6c24ead build(deps): bump the aws-sdk-dependencies group with 2 updates
  • ee034d7 Merge pull request #958 from docker/dependabot/npm_and_yarn/lodash-4.18.1
  • 1527209 Merge pull request #937 from docker/dependabot/npm_and_yarn/proxy-agent-depen...
  • d39362a build(deps): bump lodash from 4.17.23 to 4.18.1
  • a6f092b chore: update generated content
  • 60953f0 build(deps): bump the proxy-agent-dependencies group with 2 updates
  • 62c6885 Merge pull request #936 from docker/dependabot/npm_and_yarn/docker/actions-to...
  • 102c0e6 chore: update generated content
  • Additional commits viewable in compare view

Updates docker/build-push-action from 7.0.0 to 7.1.0

Release notes

Sourced from docker/build-push-action's releases.

v7.1.0

Full Changelog: docker/build-push-action@v7.0.0...v7.1.0

Commits
  • bcafcac Merge pull request #1509 from docker/dependabot/npm_and_yarn/vite-7.3.2
  • 18e62f1 Merge pull request #1510 from docker/dependabot/npm_and_yarn/lodash-4.18.1
  • 46580d2 chore: update generated content
  • 3f80b25 chore(deps): Bump lodash from 4.17.23 to 4.18.1
  • efeec95 Merge pull request #1505 from crazy-max/refactor-git-context
  • ddf04b0 Merge pull request #1511 from docker/dependabot/github_actions/crazy-max-dot-...
  • db08d97 chore(deps): Bump the crazy-max-dot-github group with 2 updates
  • ef1fb96 Merge pull request #1508 from docker/dependabot/github_actions/docker/login-a...
  • 2d8f2a1 chore: update generated content
  • 919ac7b fix test since secrets are not written to temp path anymore
  • Additional commits viewable in compare view

Updates EmbarkStudios/cargo-deny-action from 2.0.15 to 2.0.16

Commits

Updates ruby/setup-ruby from 1.293.0 to 1.300.0

Release notes

Sourced from ruby/setup-ruby's releases.

v1.300.0

What's Changed

Full Changelog: ruby/setup-ruby@v1.299.0...v1.300.0

v1.299.0

What's Changed

Full Changelog: ruby/setup-ruby@v1.298.0...v1.299.0

v1.298.0

What's Changed

Full Changelog: ruby/setup-ruby@v1.297.0...v1.298.0

v1.297.0

What's Changed

Full Changelog: ruby/setup-ruby@v1.296.0...v1.297.0

v1.296.0

What's Changed

Full Changelog: ruby/setup-ruby@v1.295.0...v1.296.0

v1.295.0

What's Changed

Full Changelog: ruby/setup-ruby@v1.294.0...v1.295.0

v1.294.0

What's Changed

Full Changelog: ruby/setup-ruby@v1.293.0...v1.294.0

Commits
  • e65c17d Add jruby-10.0.5.0
  • ba696ad Refactor matrix script
  • 2327de0 TruffleRuby 34+ does not support macOS Intel
  • 3ff19f5 Update CRuby releases on Windows
  • 4dc28cf Add ruby-3.2.11
  • c515ec1 Update CRuby releases on Windows
  • eab2afb Add ruby-3.3.11
  • 97b3338 Mention all maintainers in check-new-windows-versions for consistency
  • 319994f Update CRuby releases on Windows
  • c984c1a Add ruby-4.0.2
  • 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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Apr 12, 2026
Copilot AI review requested due to automatic review settings April 12, 2026 02:07
@dependabot dependabot bot added the github_actions Pull requests that update GitHub Actions code label Apr 12, 2026
@github-project-automation github-project-automation bot moved this to Backlog (Not Ready) in DevX Apr 12, 2026
@dependabot dependabot bot review requested due to automatic review settings April 12, 2026 02:07
Bumps the all-actions group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [actions/download-artifact](https://github.com/actions/download-artifact) | `4.3.0` | `8.0.1` |
| [digicert/code-signing-software-trust-action](https://github.com/digicert/code-signing-software-trust-action) | `1.1.0` | `1.2.1` |
| [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.6.2` | `7.0.1` |
| [docker/login-action](https://github.com/docker/login-action) | `4.0.0` | `4.1.0` |
| [docker/build-push-action](https://github.com/docker/build-push-action) | `7.0.0` | `7.1.0` |
| [EmbarkStudios/cargo-deny-action](https://github.com/embarkstudios/cargo-deny-action) | `2.0.15` | `2.0.16` |
| [ruby/setup-ruby](https://github.com/ruby/setup-ruby) | `1.293.0` | `1.300.0` |



Updates `actions/download-artifact` from 4.3.0 to 8.0.1
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v4.3.0...v8.0.1)

Updates `digicert/code-signing-software-trust-action` from 1.1.0 to 1.2.1
- [Release notes](https://github.com/digicert/code-signing-software-trust-action/releases)
- [Commits](digicert/code-signing-software-trust-action@v1.1.0...v1.2.1)

Updates `actions/upload-artifact` from 4.6.2 to 7.0.1
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v4.6.2...v7.0.1)

Updates `docker/login-action` from 4.0.0 to 4.1.0
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](docker/login-action@b45d80f...4907a6d)

Updates `docker/build-push-action` from 7.0.0 to 7.1.0
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@d08e5c3...bcafcac)

Updates `EmbarkStudios/cargo-deny-action` from 2.0.15 to 2.0.16
- [Release notes](https://github.com/embarkstudios/cargo-deny-action/releases)
- [Commits](EmbarkStudios/cargo-deny-action@3fd3802...175dc7f)

Updates `ruby/setup-ruby` from 1.293.0 to 1.300.0
- [Release notes](https://github.com/ruby/setup-ruby/releases)
- [Changelog](https://github.com/ruby/setup-ruby/blob/master/release.rb)
- [Commits](ruby/setup-ruby@dffb23f...e65c17d)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-version: 8.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: digicert/code-signing-software-trust-action
  dependency-version: 1.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-actions
- dependency-name: actions/upload-artifact
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: docker/login-action
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-actions
- dependency-name: docker/build-push-action
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-actions
- dependency-name: EmbarkStudios/cargo-deny-action
  dependency-version: 2.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-actions
- dependency-name: ruby/setup-ruby
  dependency-version: 1.300.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/github_actions/all-actions-1ad563f3ef branch from 24c7a08 to 2635ed7 Compare April 13, 2026 16:20
@dependabot dependabot bot requested review from Copilot and removed request for Copilot April 13, 2026 16:20
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

Status: Backlog (Not Ready)

Development

Successfully merging this pull request may close these issues.

0 participants