Skip to content

Bump the all-actions group across 1 directory with 4 updates#2462

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

Bump the all-actions group across 1 directory with 4 updates#2462
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/github_actions/all-actions-bec35d4341

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 29, 2026

Bumps the all-actions group with 4 updates in the / directory: actions/download-artifact, digicert/code-signing-software-trust-action, actions/upload-artifact and ruby/setup-ruby.

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.0

Release notes

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

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

  • None

Bug fixes

  • None

Improvements

  • Upgraded runtime from node20 to node24 to align with GitHub Actions platform changes.
  • Updated dependencies (tar, undici, fast-xml-parser, minimatch, strnum) to newer, more secure versions.
  • Improved overall security posture by incorporating upstream vulnerability patches in dependencies.

Security

  • Included fixes for known vulnerabilities in dependencies such as tar, undici, and fast-xml-parser.
  • Noted a CodeQL alert in fast-xml-parser (upstream issue); confirmed it is not exploitable in this action's usage and will be updated once a fix is released.

Compatibility notes

  • GitHub-hosted runners (ubuntu-latest, windows-latest, macos-latest) are fully supported with no action required.
  • Self-hosted runners require version v2.328.0 or later.
  • macOS 13 or lower is not supported—upgrade to a newer runner version.

Versioning note

  • The v1 floating tag currently points to v1.1.0 (Node 20 runtime) and will not be updated to v1.2.0 immediately.
  • Workflows pinned to uses: digicert/code-signing-software-trust-action@v1 will continue to use the Node 20-based runtime until the v1 tag is moved.
  • The v1 tag will be updated to point to v1.2.0 closer to the GitHub-enforced Node 24 transition date (June 2, 2026), giving consumers sufficient time to update any macOS 13 runner dependencies beforehand.
  • To adopt Node 24 now, pin your workflow to uses: digicert/code-signing-software-trust-action@v1.2.0 explicitly.
Commits
  • 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.0

Release notes

Sourced from actions/upload-artifact's releases.

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

BREAKING CHANGE: this update supports Node v24.x. This is not a breaking change per-se but we're treating it as such.

... (truncated)

Commits
  • 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
  • ddc45ed docs: update README to correct action name for Node.js 24 support
  • 615b319 chore: release v6.0.0 for Node.js 24 support
  • 017748b Merge pull request #744 from actions/fix-storage-blob
  • 38d4c79 chore: rebuild dist
  • Additional commits viewable in compare view

Updates ruby/setup-ruby from 1.293.0 to 1.299.0

Release notes

Sourced from ruby/setup-ruby's releases.

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

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

Bumps the all-actions group with 4 updates in the / directory: [actions/download-artifact](https://github.com/actions/download-artifact), [digicert/code-signing-software-trust-action](https://github.com/digicert/code-signing-software-trust-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [ruby/setup-ruby](https://github.com/ruby/setup-ruby).


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.0
- [Release notes](https://github.com/digicert/code-signing-software-trust-action/releases)
- [Commits](digicert/code-signing-software-trust-action@v1.1.0...v1.2.0)

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

Updates `ruby/setup-ruby` from 1.293.0 to 1.299.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...3ff19f5)

---
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.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-actions
- dependency-name: actions/upload-artifact
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: ruby/setup-ruby
  dependency-version: 1.299.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 added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Mar 29, 2026
@dependabot dependabot bot requested review from Copilot and removed request for Copilot March 29, 2026 02:07
@github-project-automation github-project-automation bot moved this to Backlog (Not Ready) in DevX Mar 29, 2026
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