Skip to content

ci(actions): update github actions (major)#2947

Open
renovate[bot] wants to merge 1 commit intodevelopfrom
renovate/major-github-actions
Open

ci(actions): update github actions (major)#2947
renovate[bot] wants to merge 1 commit intodevelopfrom
renovate/major-github-actions

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 24, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Pending
actions/cache action major v4.3.0v5.0.5
actions/checkout action major v5.0.1v6.0.2
actions/create-github-app-token action major v2.2.2v3.1.1
actions/deploy-pages action major v4.0.5v5
actions/download-artifact action major v5.0.0v8.0.1
actions/github-script action major v8.0.0v9
actions/setup-node action major v5.0.0v6.3.0 v6.4.0
actions/upload-artifact action major v4.6.2v7.0.1
actions/upload-artifact action major v6.0.0v7.0.1
azure/setup-helm action major v4.3.1v5
cypress-io/github-action action major v6.10.9v7.1.9
dawidd6/action-download-artifact action major v14v20
docker/build-push-action action major v6.19.2v7.1.0
docker/login-action action major v3.7.0v4.1.0
docker/metadata-action action major v5.10.0v6
docker/setup-buildx-action action major v3.12.0v4
node container major 22.22.2-alpine3.2324.15.0-alpine3.23
oras-project/setup-oras action major v1.2.4v2
pnpm/action-setup action major v4.4.0v6.0.1 v6.0.3

Release Notes

actions/cache (actions/cache)

v5.0.5

Compare Source

What's Changed

Full Changelog: actions/cache@v5...v5.0.5

v5.0.4

Compare Source

v5.0.3

Compare Source

What's Changed

Full Changelog: actions/cache@v5...v5.0.3

v5.0.2

Compare Source

v5.0.1

Compare Source

v5.0.0

Compare Source

v5

Compare Source

actions/checkout (actions/checkout)

v6.0.2

Compare Source

v6.0.1

Compare Source

v6.0.0

Compare Source

v6

Compare Source

actions/create-github-app-token (actions/create-github-app-token)

v3.1.1

Compare Source

Bug Fixes

v3.1.0

Compare Source

Bug Fixes
Features

v3.0.0

Compare Source

Bug Fixes
BREAKING CHANGES
  • Custom proxy handling has been removed. If you use HTTP_PROXY or HTTPS_PROXY, you must now also set NODE_USE_ENV_PROXY=1 on the action step.
  • Requires Actions Runner v2.327.1 or later if you are using a self-hosted runner.

v3

Compare Source

actions/deploy-pages (actions/deploy-pages)

v5

Compare Source

v5.0.0

Compare Source

Changelog


See details of all code changes since previous release.

⚠️ For use with products other than GitHub.com, such as GitHub Enterprise Server, please consult the compatibility table.

actions/download-artifact (actions/download-artifact)

v8.0.1

Compare Source

What's Changed

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

v8.0.0

Compare Source

v8 - What's new
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 false.

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

v8

Compare Source

v7

Compare Source

v7.0.0

Compare Source

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
New Contributors

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

v6

Compare Source

v6.0.0

Compare Source

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.

New Contributors

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

actions/github-script (actions/github-script)

v9

Compare Source

v9.0.0

Compare Source

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

actions/setup-node (actions/setup-node)

v6.3.0

Compare Source

What's Changed

Enhancements:

When using node-version-file: package.json, setup-node now prefers devEngines.runtime over engines.node.

Dependency updates:
Bug fixes:

New Contributors

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

v6.2.0

Compare Source

v6.1.0

Compare Source

What's Changed

Enhancement:
Dependency updates:
Documentation update:

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

v6.0.0

Compare Source

What's Changed

Breaking Changes

Dependency Upgrades

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

v6

Compare Source

actions/upload-artifact (actions/upload-artifact)

v7.0.1

Compare Source

What's Changed

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

v7.0.0

Compare Source

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

v7

Compare Source

v6

Compare Source

v6.0.0

Compare Source

v5

Compare Source

v5.0.0

Compare Source

azure/setup-helm (azure/setup-helm)

v5

Compare Source

v5.0.0

Compare Source

Changed
cypress-io/github-action (cypress-io/github-action)

v7.1.9

Compare Source

Bug Fixes

v7.1.8

Compare Source

Bug Fixes

v7.1.7

Compare Source

Bug Fixes

v7.1.6

Compare Source

Bug Fixes
  • deps: update transient dependencies flatted & undici (#​1683) (8248214)

v7.1.5

Compare Source

Bug Fixes

v7.1.4

Compare Source

Bug Fixes

v7.1.3

Compare Source

Bug Fixes

v7.1.2

Compare Source

Bug Fixes

v7.1.1

Compare Source

Bug Fixes

v7.1.0

Compare Source

v7.0.0

Compare Source

Features
BREAKING CHANGES
  • deps: Update action from node20 to node24
    cypress-io/github-action@​v6, using node20, is deprecated
dawidd6/action-download-artifact (dawidd6/action-download-artifact)

v20

Compare Source

What's Changed

Full Changelog: dawidd6/action-download-artifact@v19...v20

v19

Compare Source

What's Changed

Full Changelog: dawidd6/action-download-artifact@v18...v19

v18

Compare Source

What's Changed

Full Changelog: dawidd6/action-download-artifact@v17...v18

v17

Compare Source

What's Changed

Full Changelog: dawidd6/action-download-artifact@v16...v17

v16

Compare Source

What's Changed

Full Changelog: dawidd6/action-download-artifact@v15...v16

v15

Compare Source

What's Changed

Full Changelog: dawidd6/action-download-artifact@v14...v15

docker/build-push-action (docker/build-push-action)

v7.1.0

Compare Source

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

v7.0.0

Compare Source

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

v7

Compare Source

docker/login-action (docker/login-action)

v4.1.0

Compare Source

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

v4.0.0

Compare Source

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

v4

Compare Source

docker/metadata-action (docker/metadata-action)

v6

Compare Source

v6.0.0

Compare Source

Full Changelog: docker/metadata-action@v5.10.0...v6.0.0

docker/setup-buildx-action (docker/setup-buildx-action)

v4

Compare Source

v4.0.0

Compare Source

Full Changelog: docker/setup-buildx-action@v3.12.0...v4.0.0

nodejs/node (node)

v24.15.0: 2026-04-15, Version 24.15.0 'Krypton' (LTS), @​aduh95

Compare Source

Notable Changes
  • [3d87ecacbc] - (SEMVER-MINOR) cli: add --max-heap-size option (tannal) #​58708
  • [83c38672f7] - cli: add --require-module/--no-require-module (Joyee Cheung) [#​60959](

Configuration

📅 Schedule: (in timezone UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies Pull requests that update a dependency file label Apr 24, 2026
@renovate renovate Bot requested a review from a team as a code owner April 24, 2026 16:35
@renovate renovate Bot added github_actions Pull requests that update GitHub Actions code dependencies Pull requests that update a dependency file labels Apr 24, 2026
@renovate renovate Bot force-pushed the renovate/major-github-actions branch from 3d1b216 to 7f42e32 Compare April 25, 2026 01:50
@renovate renovate Bot force-pushed the renovate/major-github-actions branch from 7f42e32 to f169ff8 Compare April 25, 2026 23:41
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.

0 participants