🚨 Update github actions (main) (major)#528
Conversation
|
🚀 Preview is available at https://0dd3ad5e.enterprise-contract.pages.dev |
156f344 to
0f2a36c
Compare
|
🚀 Preview is available at https://82e1c678.enterprise-contract.pages.dev |
0f2a36c to
8b0c3ed
Compare
|
🚀 Preview is available at https://ca1d3651.enterprise-contract.pages.dev |
8b0c3ed to
c35a9fb
Compare
|
🚀 Preview is available at https://8cd54fa6.enterprise-contract.pages.dev |
c35a9fb to
e713a78
Compare
|
🚀 Preview is available at https://a6c9d9b6.enterprise-contract.pages.dev |
e713a78 to
5eb525c
Compare
|
🚀 Preview is available at https://5c2af602.enterprise-contract.pages.dev |
5eb525c to
b66bda7
Compare
|
🚀 Preview is available at https://734adc21.enterprise-contract.pages.dev |
b66bda7 to
bba418f
Compare
|
🚀 Preview is available at https://a63e6978.enterprise-contract.pages.dev |
bba418f to
4bb4e68
Compare
|
🚀 Preview is available at https://bf4cad53.enterprise-contract.pages.dev |
4bb4e68 to
90cf9b5
Compare
|
🤖 Finished Review · ✅ Success · Started 5:06 PM UTC · Completed 5:12 PM UTC |
|
🚀 Preview is available at https://010e4b4f.enterprise-contract.pages.dev |
Review — approvePR: #528 — Update github actions (main) (major) SummaryMechanical dependency update from Renovate bumping 7 GitHub Actions to their next major versions across 4 workflow files ( Key observations
Follow-up opportunitiesThe following are pre-existing patterns in the modified workflow files. They are not introduced by this PR but are noted as defense-in-depth improvements for a future PR:
Previous runReview — approveAutomated dependency update from Renovate — six GitHub Actions bumped to their next major versions across four workflow files. Changes reviewed
Verification
Breaking change analysis
Findings
Labels: PR updates GitHub Actions workflow dependencies |
90cf9b5 to
c9adc73
Compare
|
🤖 Review · ❌ Terminated · Started 6:44 AM UTC · Ended 7:00 AM UTC |
|
🚀 Preview is available at https://c46993c8.enterprise-contract.pages.dev |
|
🤖 Finished Review · ❌ Failure · Started 6:44 AM UTC · Completed 7:00 AM UTC |
This PR contains the following updates:
v6.0.2→v7.0.0v4.0.5→v5.0.0v7.0.0→v8.0.1v8.0.0→v9.0.0v6.1.0→v7.0.0v6.0.0→v7.0.1v4.0.0→v5.0.0Release Notes
actions/checkout (actions/checkout)
v7.0.0Compare Source
v7Compare Source
v6.0.3Compare Source
actions/deploy-pages (actions/deploy-pages)
v5.0.0Compare Source
Changelog
See details of all code changes since previous release.
v5Compare Source
actions/download-artifact (actions/download-artifact)
v8.0.1Compare Source
What's Changed
Full Changelog: actions/download-artifact@v8...v8.0.1
v8.0.0Compare 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 theContent-Typeheader ahead of unzipping and skips non-zipped files. Callers wishing to download a zipped file as-is can also set the newskip-decompressparameter totrue.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-mismatchparameter. To be secure by default, we are now defaulting the behavior toerrorwhich will fail the workflow run.ESM
To support new versions of the @actions/* packages, we've upgraded the package to ESM.
What's Changed
errorby @danwkennedy in #461Full Changelog: actions/download-artifact@v7...v8.0.0
v8Compare Source
actions/github-script (actions/github-script)
v9.0.0Compare Source
New features:
getOctokitfactory 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 withgetOctokitfor details and examples.ACTIONS_ORCHESTRATION_IDenvironment 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/githubv9 (ESM-only) meansrequire('@​actions/github')will fail at runtime. If you previously used patterns likeconst { getOctokit } = require('@​actions/github')to create secondary clients, use the new injectedgetOctokitfunction instead — it's available directly in the script context with no imports needed.getOctokitis now an injected function parameter. Scripts that declareconst getOctokit = ...orlet getOctokit = ...will get aSyntaxErrorbecause JavaScript does not allowconst/letredeclaration of function parameters. Use the injectedgetOctokitdirectly, or usevar getOctokit = ...if you need to redeclare it.@actions/githubinternals beyond the standardgithub/octokitclient, 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
v9Compare Source
actions/setup-node (actions/setup-node)
v7.0.0Compare Source
v7Compare Source
v6.5.0Compare Source
v6.4.0Compare Source
What's Changed
Dependency updates:
New Contributors
Full Changelog: actions/setup-node@v6...v6.4.0
v6.3.0Compare Source
What's Changed
Enhancements:
devEnginesfield by @susnux in #1283Dependency updates:
Bug fixes:
New Contributors
Full Changelog: actions/setup-node@v6...v6.3.0
v6.2.0Compare Source
What's Changed
Documentation
Dependency updates:
New Contributors
Full Changelog: actions/setup-node@v6...v6.2.0
actions/upload-artifact (actions/upload-artifact)
v7.0.1Compare Source
What's Changed
Full Changelog: actions/upload-artifact@v7...v7.0.1
v7.0.0Compare Source
v7 What's new
Direct Uploads
Adds support for uploading single files directly (unzipped). Callers can set the new
archiveparameter tofalseto 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. Thenameparameter 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
v7Compare Source
actions/upload-pages-artifact (actions/upload-pages-artifact)
v5.0.0Compare Source
Changelog
include-hidden-filesinput @jonchurch (#137)See details of all code changes since previous release.
v5Compare Source
Configuration
📅 Schedule: (UTC)
* 0-3 * * *)🚦 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.
This PR was generated by Mend Renovate. View the repository job log.