Bump the github-actions-dependencies group with 5 updates
Type: Pull Request
State: Closed
Association: Unknown
Comments: 1
(2 months ago)
(about 2 months ago)
(about 2 months ago)
dependencies component:integration github_actions
Bumps the github-actions-dependencies group with 5 updates:
| Package | From | To |
|---|---|---|
| actions/upload-artifact | 6.0.0 |
7.0.0 |
| actions/download-artifact | 6.0.0 |
8.0.1 |
| docker/login-action | 2 |
4 |
| eps1lon/actions-label-merge-conflict | 2.0.0 |
3.0.3 |
| actions/setup-node | 5 |
6 |
Updates actions/upload-artifact from 6.0.0 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
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
- Add proxy integration test by
@Link- in actions/upload-artifact#754- Upgrade the module to ESM and bump dependencies by
@danwkennedyin actions/upload-artifact#762- Support direct file uploads by
@danwkennedyin actions/upload-artifact#764New Contributors
@Link- made their first contribution in actions/upload-artifact#754Full Changelog: https://github.com/actions/upload-artifact/compare/v6...v7.0.0
Commits
Updates actions/download-artifact from 6.0.0 to 8.0.1
Release notes
Sourced from actions/download-artifact's releases.
v8.0.1
What's Changed
- Support for CJK characters in the artifact name by
@danwkennedyin actions/download-artifact#471- Add a regression test for artifact name + content-type mismatches by
@danwkennedyin actions/download-artifact#472Full Changelog: https://github.com/actions/download-artifact/compare/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 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
- Don't attempt to un-zip non-zipped downloads by
@danwkennedyin actions/download-artifact#460- Add a setting to specify what to do on hash mismatch and default it to
errorby@danwkennedyin actions/download-artifact#461Full Changelog: https://github.com/actions/download-artifact/compare/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
- Update GHES guidance to include reference to Node 20 version by
@patrikpolyakin actions/download-artifact#440- Download Artifact Node24 support by
@salmanmkcin actions/download-artifact#415- fix: update
@actions/artifactto fix Node.js 24 punycode deprecation by@salmanmkcin actions/download-artifact#451- prepare release v7.0.0 for Node.js 24 support by
@salmanmkcin actions/download-artifact#452
... (truncated)
Commits
3e5f45bAdd regression tests for CJK characters (#471)e6d03f6Add a regression test for artifact name + content-type mismatches (#472)70fc10cMerge pull request #461 from actions/danwkennedy/digest-mismatch-behaviorf258da9Add change docsccc058eFix linting issuesbd7976bAdd a setting to specify what to do on hash mismatch and default it toerrorac21fcfMerge pull request #460 from actions/danwkennedy/download-no-unzip15999bfAdd note about package bumps974686eBump the version tov8and add release notesfbe48b1Update test names to make it clearer what they do- Additional commits viewable in compare view
Updates docker/login-action from 2 to 4
Release notes
Sourced from docker/login-action's releases.
v4.0.0
- Node 24 as default runtime (requires Actions Runner v2.327.1 or later) by
@crazy-maxin docker/login-action#929- Switch to ESM and update config/test wiring by
@crazy-maxin docker/login-action#927- Bump
@actions/corefrom 1.11.1 to 3.0.0 in docker/login-action#919- Bump
@aws-sdk/client-ecrfrom 3.890.0 to 3.1000.0 in docker/login-action#909 docker/login-action#920- Bump
@aws-sdk/client-ecr-publicfrom 3.890.0 to 3.1000.0 in docker/login-action#909 docker/login-action#920- Bump
@docker/actions-toolkitfrom 0.63.0 to 0.77.0 in docker/login-action#910 docker/login-action#928- Bump
@isaacs/brace-expansionfrom 5.0.0 to 5.0.1 in docker/login-action#921- Bump js-yaml from 4.1.0 to 4.1.1 in docker/login-action#901
Full Changelog: https://github.com/docker/login-action/compare/v3.7.0...v4.0.0
v3.7.0
- Add
scopeinput to set scopes for the authentication token by@crazy-maxin docker/login-action#912- Add support for AWS European Sovereign Cloud ECR by
@dphiin docker/login-action#914- Ensure passwords are redacted with
registry-authinput by@crazy-maxin docker/login-action#911- build(deps): bump lodash from 4.17.21 to 4.17.23 in docker/login-action#915
Full Changelog: https://github.com/docker/login-action/compare/v3.6.0...v3.7.0
v3.6.0
- Add
registry-authinput for raw authentication to registries by@crazy-maxin docker/login-action#887- Bump
@aws-sdk/client-ecrto 3.890.0 in docker/login-action#882 docker/login-action#890- Bump
@aws-sdk/client-ecr-publicto 3.890.0 in docker/login-action#882 docker/login-action#890- Bump
@docker/actions-toolkitfrom 0.62.1 to 0.63.0 in docker/login-action#883- Bump brace-expansion from 1.1.11 to 1.1.12 in docker/login-action#880
- Bump undici from 5.28.4 to 5.29.0 in docker/login-action#879
- Bump tmp from 0.2.3 to 0.2.4 in docker/login-action#881
Full Changelog: https://github.com/docker/login-action/compare/v3.5.0...v3.6.0
v3.5.0
- Support dual-stack endpoints for AWS ECR by
@Spacefish@crazy-maxin docker/login-action#874 docker/login-action#876- Bump
@aws-sdk/client-ecrto 3.859.0 in docker/login-action#860 docker/login-action#878- Bump
@aws-sdk/client-ecr-publicto 3.859.0 in docker/login-action#860 docker/login-action#878- Bump
@docker/actions-toolkitfrom 0.57.0 to 0.62.1 in docker/login-action#870- Bump form-data from 2.5.1 to 2.5.5 in docker/login-action#875
Full Changelog: https://github.com/docker/login-action/compare/v3.4.0...v3.5.0
v3.4.0
- Bump
@actions/corefrom 1.10.1 to 1.11.1 in docker/login-action#791- Bump
@aws-sdk/client-ecrto 3.766.0 in docker/login-action#789 docker/login-action#856- Bump
@aws-sdk/client-ecr-publicto 3.758.0 in docker/login-action#789 docker/login-action#856- Bump
@docker/actions-toolkitfrom 0.35.0 to 0.57.0 in docker/login-action#801 docker/login-action#806 docker/login-action#858- Bump cross-spawn from 7.0.3 to 7.0.6 in docker/login-action#814
- Bump https-proxy-agent from 7.0.5 to 7.0.6 in docker/login-action#823
- Bump path-to-regexp from 6.2.2 to 6.3.0 in docker/login-action#777
Full Changelog: https://github.com/docker/login-action/compare/v3.3.0...v3.4.0
... (truncated)
Commits
b45d80fMerge pull request #929 from crazy-max/node24176cb9cnode 24 as default runtimecad8984Merge pull request #920 from docker/dependabot/npm_and_yarn/aws-sdk-dependenc...92cbcb2chore: update generated content5a2d6a7build(deps): bump the aws-sdk-dependencies group with 2 updates44512b6Merge pull request #928 from docker/dependabot/npm_and_yarn/docker/actions-to...28737a5chore: update generated contentdac0793build(deps): bump@docker/actions-toolkitfrom 0.76.0 to 0.77.062029f3Merge pull request #919 from docker/dependabot/npm_and_yarn/actions/core-3.0.008c8f06chore: update generated content- Additional commits viewable in compare view
Updates eps1lon/actions-label-merge-conflict from 2.0.0 to 3.0.3
Release notes
Sourced from eps1lon/actions-label-merge-conflict's releases.
3.0.3
What's Changed
- Ensure
outputsis populated by@jrfnlin eps1lon/actions-label-merge-conflict#136- release: 3.0.3 by
@eps1lonin eps1lon/actions-label-merge-conflict#137New Contributors
@jrfnlmade their first contribution in eps1lon/actions-label-merge-conflict#136Full Changelog: https://github.com/eps1lon/actions-label-merge-conflict/compare/v3.0.2...v3.0.3
v3.0.2
What's Changed
- fix: Handle error when label is not available (part 2) by
@kiblikin eps1lon/actions-label-merge-conflict#126- chore(deps): update dependency
@types/nodeto v20.12.13 by@renovatein eps1lon/actions-label-merge-conflict#119Full Changelog: https://github.com/eps1lon/actions-label-merge-conflict/compare/v3.0.1...v3.0.2
3.0.1
What's Changed
- docs: Added a note about label removal to README.md by
@AlexSkrypnykin eps1lon/actions-label-merge-conflict#122- fix: Handle error when label is not available by
@kiblikin eps1lon/actions-label-merge-conflict#123New Contributors
@AlexSkrypnykmade their first contribution in eps1lon/actions-label-merge-conflict#122@kiblikmade their first contribution in eps1lon/actions-label-merge-conflict#123Full Changelog: https://github.com/eps1lon/actions-label-merge-conflict/compare/v3.0.0...v3.0.1
v3.0.0
What's Changed
- Update to node20 (#115)
Full Changelog: https://github.com/eps1lon/actions-label-merge-conflict/compare/v2.1.0...v3.0.0
2.1.0
Changes
- Address set-output deprecation (eps1lon/actions-label-merge-conflict#92 by
@NotMyFault)- Fix CVE-2022-35954 (eps1lon/actions-label-merge-conflict#92 by
@NotMyFault)
Changelog
Sourced from eps1lon/actions-label-merge-conflict's changelog.
Changelog
3.0.2
- Ensure
outputsis populated (#136)3.0.2
- Handle error when label is not available (part 2) (#126)
3.0.1
- Handle error when label is not available (#123)
3.0.0
- Update to node20 (#115)
2.1.0
- Address set-output deprecation (#92 by
@NotMyFault)- Fix CVE-2022-35954 (#92 by
@NotMyFault)2.0.1
Commits
1df065erelease: 3.0.3 (#137)0bec9f3actions.yml: fix typo (#136)657e437chore(deps): update dependency typescript to v5.5.3 (#130)2834691chore(deps): update dependency@types/nodeto v20.14.11 (#128)a4f3bd7chore(deps): update dependency@types/nodeto v20.14.4 (#127)1b1b1fcrelease: 3.0.2400c5bcchore(deps): update dependency@types/nodeto v20.12.13 (#119)9fd6d6dfix: Handle error when label is not available (part 2) (#126)6d74047fix: Handle error when label is not available (#123)e77c7eddocs: Added a note about label removal to README.md (#122)- Additional commits viewable in compare view
Updates actions/setup-node from 5 to 6
Release notes
Sourced from actions/setup-node's releases.
v6.0.0
What's Changed
Breaking Changes
- Limit automatic caching to npm, update workflows and documentation by
@priyagupta108in actions/setup-node#1374Dependency Upgrades
- Upgrade ts-jest from 29.1.2 to 29.4.1 and document breaking changes in v5 by
@dependabot[bot] in #1336- Upgrade prettier from 2.8.8 to 3.6.2 by
@dependabot[bot] in #1334- Upgrade actions/publish-action from 0.3.0 to 0.4.0 by
@dependabot[bot] in #1362Full Changelog: https://github.com/actions/setup-node/compare/v5...v6.0.0
Commits
53b8394Bump minimatch from 3.1.2 to 3.1.5 (#1498)54045abScope test lockfiles by package manager and update cache tests (#1495)c882bffReplace uuid with crypto.randomUUID() (#1378)774c1d6feat(node-version-file): support parsingdevEnginesfield (#1283)efcb663fix: remove hardcoded bearer (#1467)d02c89dFix npm audit issues (#1491)6044e13Docs: bump actions/checkout from v5 to v6 (#1468)8e49463Fix README typo (#1226)621ac41README.md: bump to latest released checkout version v6 (#1446)2951748Bump@actions/cacheto v5.0.1 (#1449)- Additional commits viewable 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
Package Dependencies
actions/upload-artifact
actions
6.0.0 → 7.0.0
Major
actions/download-artifact
actions
6.0.0 → 8.0.1
Major
eps1lon/actions-label-merge-conflict
actions
2.0.0 → 3.0.3
Major
Technical Details
| ID: | 14992636 |
| UUID: | 4171014947 |
| Node ID: | PR_kwDOAJTq2M7Ooj2- |
| Host: | GitHub |
| Repository: | apache/cloudstack |