🚨 Update github actions (main) (major)#3132
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests.
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
e38a026 to
df58afe
Compare
16f9391 to
31eb2bc
Compare
042a0f4 to
ddedbe9
Compare
31ca854 to
e7d8189
Compare
e2a726f to
1182541
Compare
1182541 to
9c7fcb9
Compare
9affe55 to
837e0b3
Compare
85b64e5 to
ee9b6d9
Compare
baaf71f to
2dca731
Compare
2dca731 to
ee64288
Compare
ReviewFindingsHigh
Low
Previous runReviewFindingsHigh
Labels: All changes are GitHub Actions workflow version bumps in .github/workflows/. Previous run (2)ReviewFindingsHigh
Info
Previous run (3)ReviewFindingsHigh
Medium
Low
Info
Previous run (4)ReviewFindingsHigh
Medium
Low
Info
Previous run (5)ReviewFindingsHigh
Medium
Low
Info
Previous run (6)ReviewFindingsHigh
Medium
Low
Info
|
ee64288 to
ea04860
Compare
|
🤖 Finished Review · ✅ Success · Started 9:18 PM UTC · Completed 9:27 PM UTC |
ea04860 to
353b744
Compare
|
🤖 Finished Review · ✅ Success · Started 5:54 PM UTC · Completed 6:05 PM UTC |
353b744 to
f507ca0
Compare
|
🤖 Finished Review · ✅ Success · Started 5:14 PM UTC · Completed 5:24 PM UTC |
f507ca0 to
3568a6c
Compare
|
🤖 Finished Review · ✅ Success · Started 6:44 PM UTC · Completed 6:53 PM UTC |
3568a6c to
a4536c4
Compare
|
🤖 Finished Review · ✅ Success · Started 8:34 PM UTC · Completed 8:41 PM UTC |
a4536c4 to
7d722c4
Compare
|
🤖 Finished Review · ✅ Success · Started 2:42 PM UTC · Completed 2:53 PM UTC |
| - uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 | ||
| id: generate-token | ||
| with: | ||
| app-id: ${{ vars.EC_AUTOMATION_APP_ID }} |
There was a problem hiding this comment.
[low] api-contract
The actions/create-github-app-token is bumped from v2 to v3. According to the release notes, v3.1.0 deprecates app-id in favor of client-id. The workflow still uses app-id and private-key, which remain functional but deprecated.
Suggested fix: Consider migrating from app-id to client-id in a follow-up PR.
| - name: Upload unit test coverage report | ||
| uses: codecov/codecov-action@75cd11691c0faa626561e295848008c8a7dddffe # v5.5.4 | ||
| uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0 | ||
| env: |
There was a problem hiding this comment.
[low] api-contract
The codecov/codecov-action is bumped from v5 to v7 (skipping v6). The workflow provides CODECOV_TOKEN via the env: block. The release notes cite Node 24 support as the main breaking change with no mention of token handling changes. Verify after merge that the env var approach still works with v7.
This PR contains the following updates:
v5.0.4→v6.1.0v6.0.2→v7.0.0v5.0.0→v6.0.0v2.2.2→v3.2.0v4.0.5→v5.0.0v7.0.0→v8.0.1v6.0.0→v7.0.1v4.0.0→v5.0.0v5.5.4→v7.0.0v3.7.0→v4.2.0v2→v3Release Notes
actions/cache (actions/cache)
v6.1.0Compare Source
What's Changed
Full Changelog: actions/cache@v6...v6.1.0
v6.0.0Compare Source
What's Changed
Full Changelog: actions/cache@v5...v6.0.0
v6Compare Source
v5.1.0Compare Source
What's Changed
Full Changelog: actions/cache@v5...v5.1.0
v5.0.5Compare Source
What's Changed
Full Changelog: actions/cache@v5...v5.0.5
actions/checkout (actions/checkout)
v7.0.0Compare Source
v7Compare Source
v6.0.3Compare Source
actions/configure-pages (actions/configure-pages)
v6.0.0Compare Source
Changelog
See details of all code changes since previous release.
v6Compare Source
actions/create-github-app-token (actions/create-github-app-token)
v3.2.0Compare Source
Features
repositoriesinput (#372) (85eb8dd)Bug Fixes
v3.1.1Compare Source
Bug Fixes
v3.1.0Compare Source
Bug Fixes
Features
client-idinput and deprecateapp-id(#353) (e6bd4e6)v3.0.0Compare Source
NODE_USE_ENV_PROXYfor proxy support (#342) (4451bcb)Bug Fixes
BREAKING CHANGES
v3Compare 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/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
codecov/codecov-action (codecov/codecov-action)
v7.0.0Compare Source
codecovsecurityaccount. We have deleted the account and are usingcodecovsecopswith the original gpg keyWhat's Changed
Full Changelog: codecov/codecov-action@v6.0.1...v7.0.0
v7Compare Source
v6.0.2Compare Source
This is a copy of the
v7.0.0release to make updates easierWhat's Changed
Full Changelog: codecov/codecov-action@v6.0.1...v6.0.2
v6.0.1Compare Source
What's Changed
Full Changelog: codecov/codecov-action@v6.0.0...v6.0.1
v6.0.0Compare Source
What's Changed
Full Changelog: codecov/codecov-action@v5.5.4...v6.0.0
v6Compare Source
v5.5.5Compare Source
This release only contains the keybase.io change as described here.
Full Changelog: codecov/codecov-action@v5.5.4...v5.5.5
docker/setup-qemu-action (docker/setup-qemu-action)
v4.2.0Compare Source
v4.1.0Compare Source
resetinput to uninstall current emulators by @crazy-max in #21Full Changelog: docker/setup-qemu-action@v4.0.0...v4.1.0
v4.0.0Compare Source
Full Changelog: docker/setup-qemu-action@v3.7.0...v4.0.0
v4Compare Source
softprops/action-gh-release (softprops/action-gh-release)
v3.0.1Compare Source
3.0.1
v3.0.0Compare Source
3.0.0is a major release that moves the action runtime from Node 20 to Node 24.Use
v3on GitHub-hosted runners and self-hosted fleets that already support theNode 24 Actions runtime. If you still need the last Node 20-compatible line, stay on
v2.6.2.What's Changed
Other Changes 🔄
@types/nodeto the Node 24 line and allow future Dependabot updatesv3;v2remains pinned to the latest2.xreleasev3Compare 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.