Add proxy integration test - #754
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds a GitHub Actions workflow to validate that the upload-artifact action respects http_proxy and https_proxy environment variables by forcing all HTTP(S) traffic through a Squid proxy.
Changes:
- Introduces
.github/workflows/test-proxy.ymlwhich runs a containerized Ubuntu job with a Squid proxy service. - Sets up
iptablesrules to block direct outbound HTTP/HTTPS (ports 80/443) while allowing traffic only to the proxy and DNS. - Verifies that direct HTTPS requests fail, HTTPS via the proxy succeeds, and then uploads a test artifact through the proxy using the local action (
uses: ./).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
philip-gai
approved these changes
Jan 30, 2026
boxofyellow
approved these changes
Jan 30, 2026
GhadimiR
approved these changes
Jan 30, 2026
fdio-github
pushed a commit
to FDio/csit
that referenced
this pull request
Mar 2, 2026
Bumps actions/upload-artifact from 6 to 7. ## 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 Add proxy integration test by @Link- in actions/upload-artifact#754 Upgrade the module to ESM and bump dependencies by @danwkennedy in actions/upload-artifact#762 Support direct file uploads by @danwkennedy in actions/upload-artifact#764 New Contributors @Link- made their first contribution in actions/upload-artifact#754 Full Changelog: actions/upload-artifact@v6...v7.0.0 ## 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 See full diff in compare view  Signed-off-by: dependabot[bot] <support@github.com> Change-Id: Ia2e29e951761b7cd74c86c9469ca502af2b566f6 GitHub-PR: #4131 GitHub-Hash: ec81e01b2a1da5f9 Signed-off-by: fdio.github <releng+fdio-github@linuxfoundation.org>
mergify Bot
added a commit
to ArcadeData/arcadedb
that referenced
this pull request
Mar 3, 2026
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6.0.0 to 7.0.0. Release notes *Sourced from [actions/upload-artifact's releases](https://github.com/actions/upload-artifact/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 > -------------- > > * Add proxy integration test by [`@Link`](https://github.com/Link)- in [actions/upload-artifact#754](https://redirect.github.com/actions/upload-artifact/pull/754) > * Upgrade the module to ESM and bump dependencies by [`@danwkennedy`](https://github.com/danwkennedy) in [actions/upload-artifact#762](https://redirect.github.com/actions/upload-artifact/pull/762) > * Support direct file uploads by [`@danwkennedy`](https://github.com/danwkennedy) in [actions/upload-artifact#764](https://redirect.github.com/actions/upload-artifact/pull/764) > > New Contributors > ---------------- > > * [`@Link`](https://github.com/Link)- made their first contribution in [actions/upload-artifact#754](https://redirect.github.com/actions/upload-artifact/pull/754) > > **Full Changelog**: <actions/upload-artifact@v6...v7.0.0> Commits * [`bbbca2d`](actions/upload-artifact@bbbca2d) Support direct file uploads ([#764](https://redirect.github.com/actions/upload-artifact/issues/764)) * [`589182c`](actions/upload-artifact@589182c) Upgrade the module to ESM and bump dependencies ([#762](https://redirect.github.com/actions/upload-artifact/issues/762)) * [`47309c9`](actions/upload-artifact@47309c9) Merge pull request [#754](https://redirect.github.com/actions/upload-artifact/issues/754) from actions/Link-/add-proxy-integration-tests * [`02a8460`](actions/upload-artifact@02a8460) Add proxy integration test * See full diff in [compare view](actions/upload-artifact@b7c566a...bbbca2d) [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
mergify Bot
added a commit
to robfrank/linklift
that referenced
this pull request
Mar 10, 2026
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6.0.0 to 7.0.0. Release notes *Sourced from [actions/upload-artifact's releases](https://github.com/actions/upload-artifact/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 > -------------- > > * Add proxy integration test by [`@Link`](https://github.com/Link)- in [actions/upload-artifact#754](https://redirect.github.com/actions/upload-artifact/pull/754) > * Upgrade the module to ESM and bump dependencies by [`@danwkennedy`](https://github.com/danwkennedy) in [actions/upload-artifact#762](https://redirect.github.com/actions/upload-artifact/pull/762) > * Support direct file uploads by [`@danwkennedy`](https://github.com/danwkennedy) in [actions/upload-artifact#764](https://redirect.github.com/actions/upload-artifact/pull/764) > > New Contributors > ---------------- > > * [`@Link`](https://github.com/Link)- made their first contribution in [actions/upload-artifact#754](https://redirect.github.com/actions/upload-artifact/pull/754) > > **Full Changelog**: <actions/upload-artifact@v6...v7.0.0> Commits * [`bbbca2d`](actions/upload-artifact@bbbca2d) Support direct file uploads ([#764](https://redirect.github.com/actions/upload-artifact/issues/764)) * [`589182c`](actions/upload-artifact@589182c) Upgrade the module to ESM and bump dependencies ([#762](https://redirect.github.com/actions/upload-artifact/issues/762)) * [`47309c9`](actions/upload-artifact@47309c9) Merge pull request [#754](https://redirect.github.com/actions/upload-artifact/issues/754) from actions/Link-/add-proxy-integration-tests * [`02a8460`](actions/upload-artifact@02a8460) Add proxy integration test * See full diff in [compare view](actions/upload-artifact@b7c566a...bbbca2d) [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
This was referenced Mar 19, 2026
renovate Bot
added a commit
to sdwilsh/sOS
that referenced
this pull request
Apr 19, 2026
##### [\`v7.0.1\`](https://github.com/actions/upload-artifact/releases/tag/v7.0.1) ##### What's Changed - Update the readme with direct upload details by [@danwkennedy](https://github.com/danwkennedy) in [#795](actions/upload-artifact#795) - Readme: bump all the example versions to v7 by [@danwkennedy](https://github.com/danwkennedy) in [#796](actions/upload-artifact#796) - Include changes in typespec/ts-http-runtime 0.3.5 by [@yacaovsnc](https://github.com/yacaovsnc) in [#797](actions/upload-artifact#797) **Full Changelog**: <actions/upload-artifact@v7...v7.0.1> --- ##### [\`v7.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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 - Add proxy integration test by [@Link-](https://github.com/Link-) in [#754](actions/upload-artifact#754) - Upgrade the module to ESM and bump dependencies by [@danwkennedy](https://github.com/danwkennedy) in [#762](actions/upload-artifact#762) - Support direct file uploads by [@danwkennedy](https://github.com/danwkennedy) in [#764](actions/upload-artifact#764) #### New Contributors - [@Link-](https://github.com/Link-) made their first contribution in [#754](actions/upload-artifact#754) **Full Changelog**: <actions/upload-artifact@v6...v7.0.0> --- ##### [\`v6.0.0\`](actions/upload-artifact@v5.0.0...v6.0.0) --- ##### [\`v5.0.0\`](actions/upload-artifact@v4.6.2...v5.0.0)
onap-github
pushed a commit
to onap/portal-ng-ui
that referenced
this pull request
Apr 22, 2026
Bumps actions/upload-artifact from 6.0.0 to 7.0.1. ## Release notes Sourced from actions/upload-artifact's releases. v7.0.1 What's Changed Update the readme with direct upload details by @danwkennedy in actions/upload-artifact#795 Readme: bump all the example versions to v7 by @danwkennedy in actions/upload-artifact#796 Include changes in typespec/ts-http-runtime 0.3.5 by @yacaovsnc in actions/upload-artifact#797 Full Changelog: actions/upload-artifact@v7...v7.0.1 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 Add proxy integration test by @Link- in actions/upload-artifact#754 Upgrade the module to ESM and bump dependencies by @danwkennedy in actions/upload-artifact#762 Support direct file uploads by @danwkennedy in actions/upload-artifact#764 New Contributors @Link- made their first contribution in actions/upload-artifact#754 Full Changelog: actions/upload-artifact@v6...v7.0.0 ## Commits 043fb46 Merge pull request #797 from actions/yacaovsnc/update-dependency 634250c Include changes in typespec/ts-http-runtime 0.3.5 e454baa Readme: bump all the example versions to v7 (#796) 74fad66 Update the readme with direct upload details (#795) 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 See full diff in compare view  Issue-ID: CIMAN-33 Signed-off-by: dependabot[bot] <support@github.com> Change-Id: I78b5bf8bd3e98ae6b8b92f5be018407e3ee6cb98 GitHub-PR: #181 GitHub-Hash: 2d2b0a53cb03bf7f Signed-off-by: onap.gh2gerrit <releng+onap-gh2gerrit@linuxfoundation.org>
renovate Bot
added a commit
to sdwilsh/sOS
that referenced
this pull request
Apr 29, 2026
##### [\`v7.0.1\`](https://github.com/actions/upload-artifact/releases/tag/v7.0.1) ##### What's Changed - Update the readme with direct upload details by [@danwkennedy](https://github.com/danwkennedy) in [#795](actions/upload-artifact#795) - Readme: bump all the example versions to v7 by [@danwkennedy](https://github.com/danwkennedy) in [#796](actions/upload-artifact#796) - Include changes in typespec/ts-http-runtime 0.3.5 by [@yacaovsnc](https://github.com/yacaovsnc) in [#797](actions/upload-artifact#797) **Full Changelog**: <actions/upload-artifact@v7...v7.0.1> --- ##### [\`v7.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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 - Add proxy integration test by [@Link-](https://github.com/Link-) in [#754](actions/upload-artifact#754) - Upgrade the module to ESM and bump dependencies by [@danwkennedy](https://github.com/danwkennedy) in [#762](actions/upload-artifact#762) - Support direct file uploads by [@danwkennedy](https://github.com/danwkennedy) in [#764](actions/upload-artifact#764) #### New Contributors - [@Link-](https://github.com/Link-) made their first contribution in [#754](actions/upload-artifact#754) **Full Changelog**: <actions/upload-artifact@v6...v7.0.0> --- ##### [\`v7\`](actions/upload-artifact@v6...v7) --- ##### [\`v6\`](actions/upload-artifact@v5...v6) --- ##### [\`v6.0.0\`](actions/upload-artifact@v5.0.0...v6.0.0) --- ##### [\`v5\`](actions/upload-artifact@v4...v5) --- ##### [\`v5.0.0\`](actions/upload-artifact@v4.6.2...v5.0.0) --- ##### [\`v4.6.2\`](https://github.com/actions/upload-artifact/releases/tag/v4.6.2) #### What's Changed - Update to use artifact 2.3.2 package & prepare for new upload-artifact release by [@salmanmkc](https://github.com/salmanmkc) in [#685](actions/upload-artifact#685) #### New Contributors - [@salmanmkc](https://github.com/salmanmkc) made their first contribution in [#685](actions/upload-artifact#685) **Full Changelog**: <actions/upload-artifact@v4...v4.6.2> --- ##### [\`v4.6.1\`](https://github.com/actions/upload-artifact/releases/tag/v4.6.1) #### What's Changed - Update to use artifact 2.2.2 package by [@yacaovsnc](https://github.com/yacaovsnc) in [#673](actions/upload-artifact#673) **Full Changelog**: <actions/upload-artifact@v4...v4.6.1> --- ##### [\`v4.6.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.6.0) #### What's Changed - Expose env vars to control concurrency and timeout by [@yacaovsnc](https://github.com/yacaovsnc) in [#662](actions/upload-artifact#662) **Full Changelog**: <actions/upload-artifact@v4...v4.6.0> --- ##### [\`v4.5.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.5.0) #### What's Changed - fix: deprecated `Node.js` version in action by [@hamirmahal](https://github.com/hamirmahal) in [#578](actions/upload-artifact#578) - Add new `artifact-digest` output by [@bdehamer](https://github.com/bdehamer) in [#656](actions/upload-artifact#656) #### New Contributors - [@hamirmahal](https://github.com/hamirmahal) made their first contribution in [#578](actions/upload-artifact#578) - [@bdehamer](https://github.com/bdehamer) made their first contribution in [#656](actions/upload-artifact#656) **Full Changelog**: <actions/upload-artifact@v4.4.3...v4.5.0> --- ##### [\`v4.4.3\`](https://github.com/actions/upload-artifact/releases/tag/v4.4.3) #### What's Changed - Undo indirect dependency updates from [#627](actions/upload-artifact#627) by [@joshmgross](https://github.com/joshmgross) in [#632](actions/upload-artifact#632) **Full Changelog**: <actions/upload-artifact@v4.4.2...v4.4.3> --- ##### [\`v4.4.2\`](https://github.com/actions/upload-artifact/releases/tag/v4.4.2) #### What's Changed - Bump `@actions/artifact` to 2.1.11 by [@robherley](https://github.com/robherley) in [#627](actions/upload-artifact#627) - Includes fix for relative symlinks not resolving properly **Full Changelog**: <actions/upload-artifact@v4.4.1...v4.4.2> --- ##### [\`v4.4.1\`](https://github.com/actions/upload-artifact/releases/tag/v4.4.1) #### What's Changed - Add a section about hidden files by [@joshmgross](https://github.com/joshmgross) in [#607](actions/upload-artifact#607) - Add workflow file for publishing releases to immutable action package by [@Jcambass](https://github.com/Jcambass) in [#621](actions/upload-artifact#621) - Update [@actions/artifact](https://github.com/actions/artifact) to latest version, includes symlink and timeout fixes by [@robherley](https://github.com/robherley) in [#625](actions/upload-artifact#625) #### New Contributors - [@Jcambass](https://github.com/Jcambass) made their first contribution in [#621](actions/upload-artifact#621) **Full Changelog**: <actions/upload-artifact@v4.4.0...v4.4.1> --- ##### [\`v4.4.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.4.0) #### Notice: Breaking Changes⚠️ We will no longer include hidden files and folders by default in the `upload-artifact` action of this version. This reduces the risk that credentials are accidentally uploaded into artifacts. Customers who need to continue to upload these files can use a new option, `include-hidden-files`, to continue to do so. See ["Notice of upcoming deprecations and breaking changes in GitHub Actions runners"](https://github.blog/changelog/2024-08-19-notice-of-upcoming-deprecations-and-breaking-changes-in-github-actions-runners/) changelog and [this issue](actions/upload-artifact#602) for more details. #### What's Changed - Exclude hidden files by default by [@joshmgross](https://github.com/joshmgross) in [#598](actions/upload-artifact#598) **Full Changelog**: <actions/upload-artifact@v4.3.6...v4.4.0> --- ##### [\`v4.3.6\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.6) #### What's Changed - Revert to [@actions/artifact](https://github.com/actions/artifact) 2.1.8 by [@robherley](https://github.com/robherley) in [#594](actions/upload-artifact#594) **Full Changelog**: <actions/upload-artifact@v4...v4.3.6> --- ##### [\`v4.3.5\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.5) #### What's Changed - Bump [@actions/artifact](https://github.com/actions/artifact) to v2.1.9 by [@robherley](https://github.com/robherley) in [#588](actions/upload-artifact#588) - Fixed artifact upload chunk timeout logic [#1774](actions/toolkit#1774) - Use lazy stream to prevent issues with open file limits [#1771](actions/toolkit#1771) **Full Changelog**: <actions/upload-artifact@v4.3.4...v4.3.5> --- ##### [\`v4.3.4\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.4) #### What's Changed - Update [@actions/artifact](https://github.com/actions/artifact) version, bump dependencies by [@robherley](https://github.com/robherley) in [#584](actions/upload-artifact#584) **Full Changelog**: <actions/upload-artifact@v4.3.3...v4.3.4> --- ##### [\`v4.3.3\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3) #### What's Changed - updating `@actions/artifact` dependency to v2.1.6 by [@eggyhead](https://github.com/eggyhead) in [#565](actions/upload-artifact#565) **Full Changelog**: <actions/upload-artifact@v4.3.2...v4.3.3> --- ##### [\`v4.3.2\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2) #### What's Changed - Update release-new-action-version.yml by [@konradpabjan](https://github.com/konradpabjan) in [#516](actions/upload-artifact#516) - Minor fix to the migration readme by [@andrewakim](https://github.com/andrewakim) in [#523](actions/upload-artifact#523) - Update readme with v3/v2/v1 deprecation notice by [@robherley](https://github.com/robherley) in [#561](actions/upload-artifact#561) - updating `@actions/artifact` dependency to v2.1.5 and `@actions/core` to v1.0.1 by [@eggyhead](https://github.com/eggyhead) in [#562](actions/upload-artifact#562) #### New Contributors - [@andrewakim](https://github.com/andrewakim) made their first contribution in [#523](actions/upload-artifact#523) **Full Changelog**: <actions/upload-artifact@v4.3.1...v4.3.2> --- ##### [\`v4.3.1\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.1) - Bump [@actions/artifacts](https://github.com/actions/artifacts) to latest version to include [updated GHES host check](actions/toolkit#1648) --- ##### [\`v4.3.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.0) #### What's Changed - Reorganize upload code in prep for merge logic & add more tests by [@robherley](https://github.com/robherley) in [#504](actions/upload-artifact#504) - Add sub-action to merge artifacts by [@robherley](https://github.com/robherley) in [#505](actions/upload-artifact#505) **Full Changelog**: <actions/upload-artifact@v4...v4.3.0> --- ##### [\`v4.2.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.2.0) #### What's Changed - Ability to overwrite an Artifact by [@robherley](https://github.com/robherley) in [#501](actions/upload-artifact#501) **Full Changelog**: <actions/upload-artifact@v4...v4.2.0> --- ##### [\`v4.1.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.1.0) #### What's Changed - Add migrations docs by [@robherley](https://github.com/robherley) in [#482](actions/upload-artifact#482) - Update README.md by [@samuelwine](https://github.com/samuelwine) in [#492](actions/upload-artifact#492) - Support artifact-url output by [@konradpabjan](https://github.com/konradpabjan) in [#496](actions/upload-artifact#496) - Update readme to reflect new 500 artifact per job limit by [@robherley](https://github.com/robherley) in [#497](actions/upload-artifact#497) #### New Contributors - [@samuelwine](https://github.com/samuelwine) made their first contribution in [#492](actions/upload-artifact#492) **Full Changelog**: <actions/upload-artifact@v4...v4.1.0>
7 tasks
renovate Bot
added a commit
to sdwilsh/sOS
that referenced
this pull request
May 12, 2026
##### [\`v7.0.1\`](https://github.com/actions/upload-artifact/releases/tag/v7.0.1) ##### What's Changed - Update the readme with direct upload details by [@danwkennedy](https://github.com/danwkennedy) in [#795](actions/upload-artifact#795) - Readme: bump all the example versions to v7 by [@danwkennedy](https://github.com/danwkennedy) in [#796](actions/upload-artifact#796) - Include changes in typespec/ts-http-runtime 0.3.5 by [@yacaovsnc](https://github.com/yacaovsnc) in [#797](actions/upload-artifact#797) **Full Changelog**: <actions/upload-artifact@v7...v7.0.1> --- ##### [\`v7.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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 - Add proxy integration test by [@Link-](https://github.com/Link-) in [#754](actions/upload-artifact#754) - Upgrade the module to ESM and bump dependencies by [@danwkennedy](https://github.com/danwkennedy) in [#762](actions/upload-artifact#762) - Support direct file uploads by [@danwkennedy](https://github.com/danwkennedy) in [#764](actions/upload-artifact#764) #### New Contributors - [@Link-](https://github.com/Link-) made their first contribution in [#754](actions/upload-artifact#754) **Full Changelog**: <actions/upload-artifact@v6...v7.0.0> --- ##### [\`v7\`](actions/upload-artifact@v6...v7) --- ##### [\`v6.0.0\`](actions/upload-artifact@v5.0.0...v6.0.0) --- ##### [\`v6\`](actions/upload-artifact@v5...v6) --- ##### [\`v5.0.0\`](actions/upload-artifact@v4.6.2...v5.0.0) --- ##### [\`v5\`](actions/upload-artifact@v4...v5) --- ##### [\`v4.6.2\`](https://github.com/actions/upload-artifact/releases/tag/v4.6.2) #### What's Changed - Update to use artifact 2.3.2 package & prepare for new upload-artifact release by [@salmanmkc](https://github.com/salmanmkc) in [#685](actions/upload-artifact#685) #### New Contributors - [@salmanmkc](https://github.com/salmanmkc) made their first contribution in [#685](actions/upload-artifact#685) **Full Changelog**: <actions/upload-artifact@v4...v4.6.2> --- ##### [\`v4.6.1\`](https://github.com/actions/upload-artifact/releases/tag/v4.6.1) #### What's Changed - Update to use artifact 2.2.2 package by [@yacaovsnc](https://github.com/yacaovsnc) in [#673](actions/upload-artifact#673) **Full Changelog**: <actions/upload-artifact@v4...v4.6.1> --- ##### [\`v4.6.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.6.0) #### What's Changed - Expose env vars to control concurrency and timeout by [@yacaovsnc](https://github.com/yacaovsnc) in [#662](actions/upload-artifact#662) **Full Changelog**: <actions/upload-artifact@v4...v4.6.0> --- ##### [\`v4.5.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.5.0) #### What's Changed - fix: deprecated `Node.js` version in action by [@hamirmahal](https://github.com/hamirmahal) in [#578](actions/upload-artifact#578) - Add new `artifact-digest` output by [@bdehamer](https://github.com/bdehamer) in [#656](actions/upload-artifact#656) #### New Contributors - [@hamirmahal](https://github.com/hamirmahal) made their first contribution in [#578](actions/upload-artifact#578) - [@bdehamer](https://github.com/bdehamer) made their first contribution in [#656](actions/upload-artifact#656) **Full Changelog**: <actions/upload-artifact@v4.4.3...v4.5.0> --- ##### [\`v4.4.3\`](https://github.com/actions/upload-artifact/releases/tag/v4.4.3) #### What's Changed - Undo indirect dependency updates from [#627](actions/upload-artifact#627) by [@joshmgross](https://github.com/joshmgross) in [#632](actions/upload-artifact#632) **Full Changelog**: <actions/upload-artifact@v4.4.2...v4.4.3> --- ##### [\`v4.4.2\`](https://github.com/actions/upload-artifact/releases/tag/v4.4.2) #### What's Changed - Bump `@actions/artifact` to 2.1.11 by [@robherley](https://github.com/robherley) in [#627](actions/upload-artifact#627) - Includes fix for relative symlinks not resolving properly **Full Changelog**: <actions/upload-artifact@v4.4.1...v4.4.2> --- ##### [\`v4.4.1\`](https://github.com/actions/upload-artifact/releases/tag/v4.4.1) #### What's Changed - Add a section about hidden files by [@joshmgross](https://github.com/joshmgross) in [#607](actions/upload-artifact#607) - Add workflow file for publishing releases to immutable action package by [@Jcambass](https://github.com/Jcambass) in [#621](actions/upload-artifact#621) - Update [@actions/artifact](https://github.com/actions/artifact) to latest version, includes symlink and timeout fixes by [@robherley](https://github.com/robherley) in [#625](actions/upload-artifact#625) #### New Contributors - [@Jcambass](https://github.com/Jcambass) made their first contribution in [#621](actions/upload-artifact#621) **Full Changelog**: <actions/upload-artifact@v4.4.0...v4.4.1> --- ##### [\`v4.4.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.4.0) #### Notice: Breaking Changes⚠️ We will no longer include hidden files and folders by default in the `upload-artifact` action of this version. This reduces the risk that credentials are accidentally uploaded into artifacts. Customers who need to continue to upload these files can use a new option, `include-hidden-files`, to continue to do so. See ["Notice of upcoming deprecations and breaking changes in GitHub Actions runners"](https://github.blog/changelog/2024-08-19-notice-of-upcoming-deprecations-and-breaking-changes-in-github-actions-runners/) changelog and [this issue](actions/upload-artifact#602) for more details. #### What's Changed - Exclude hidden files by default by [@joshmgross](https://github.com/joshmgross) in [#598](actions/upload-artifact#598) **Full Changelog**: <actions/upload-artifact@v4.3.6...v4.4.0> --- ##### [\`v4.3.6\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.6) #### What's Changed - Revert to [@actions/artifact](https://github.com/actions/artifact) 2.1.8 by [@robherley](https://github.com/robherley) in [#594](actions/upload-artifact#594) **Full Changelog**: <actions/upload-artifact@v4...v4.3.6> --- ##### [\`v4.3.5\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.5) #### What's Changed - Bump [@actions/artifact](https://github.com/actions/artifact) to v2.1.9 by [@robherley](https://github.com/robherley) in [#588](actions/upload-artifact#588) - Fixed artifact upload chunk timeout logic [#1774](actions/toolkit#1774) - Use lazy stream to prevent issues with open file limits [#1771](actions/toolkit#1771) **Full Changelog**: <actions/upload-artifact@v4.3.4...v4.3.5> --- ##### [\`v4.3.4\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.4) #### What's Changed - Update [@actions/artifact](https://github.com/actions/artifact) version, bump dependencies by [@robherley](https://github.com/robherley) in [#584](actions/upload-artifact#584) **Full Changelog**: <actions/upload-artifact@v4.3.3...v4.3.4> --- ##### [\`v4.3.3\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3) #### What's Changed - updating `@actions/artifact` dependency to v2.1.6 by [@eggyhead](https://github.com/eggyhead) in [#565](actions/upload-artifact#565) **Full Changelog**: <actions/upload-artifact@v4.3.2...v4.3.3> --- ##### [\`v4.3.2\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2) #### What's Changed - Update release-new-action-version.yml by [@konradpabjan](https://github.com/konradpabjan) in [#516](actions/upload-artifact#516) - Minor fix to the migration readme by [@andrewakim](https://github.com/andrewakim) in [#523](actions/upload-artifact#523) - Update readme with v3/v2/v1 deprecation notice by [@robherley](https://github.com/robherley) in [#561](actions/upload-artifact#561) - updating `@actions/artifact` dependency to v2.1.5 and `@actions/core` to v1.0.1 by [@eggyhead](https://github.com/eggyhead) in [#562](actions/upload-artifact#562) #### New Contributors - [@andrewakim](https://github.com/andrewakim) made their first contribution in [#523](actions/upload-artifact#523) **Full Changelog**: <actions/upload-artifact@v4.3.1...v4.3.2> --- ##### [\`v4.3.1\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.1) - Bump [@actions/artifacts](https://github.com/actions/artifacts) to latest version to include [updated GHES host check](actions/toolkit#1648) --- ##### [\`v4.3.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.0) #### What's Changed - Reorganize upload code in prep for merge logic & add more tests by [@robherley](https://github.com/robherley) in [#504](actions/upload-artifact#504) - Add sub-action to merge artifacts by [@robherley](https://github.com/robherley) in [#505](actions/upload-artifact#505) **Full Changelog**: <actions/upload-artifact@v4...v4.3.0> --- ##### [\`v4.2.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.2.0) #### What's Changed - Ability to overwrite an Artifact by [@robherley](https://github.com/robherley) in [#501](actions/upload-artifact#501) **Full Changelog**: <actions/upload-artifact@v4...v4.2.0> --- ##### [\`v4.1.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.1.0) #### What's Changed - Add migrations docs by [@robherley](https://github.com/robherley) in [#482](actions/upload-artifact#482) - Update README.md by [@samuelwine](https://github.com/samuelwine) in [#492](actions/upload-artifact#492) - Support artifact-url output by [@konradpabjan](https://github.com/konradpabjan) in [#496](actions/upload-artifact#496) - Update readme to reflect new 500 artifact per job limit by [@robherley](https://github.com/robherley) in [#497](actions/upload-artifact#497) #### New Contributors - [@samuelwine](https://github.com/samuelwine) made their first contribution in [#492](actions/upload-artifact#492) **Full Changelog**: <actions/upload-artifact@v4...v4.1.0>
This was referenced May 15, 2026
renovate Bot
added a commit
to sdwilsh/sOS
that referenced
this pull request
May 22, 2026
##### [\`v7.0.1\`](https://github.com/actions/upload-artifact/releases/tag/v7.0.1) ##### What's Changed - Update the readme with direct upload details by [@danwkennedy](https://github.com/danwkennedy) in [#795](actions/upload-artifact#795) - Readme: bump all the example versions to v7 by [@danwkennedy](https://github.com/danwkennedy) in [#796](actions/upload-artifact#796) - Include changes in typespec/ts-http-runtime 0.3.5 by [@yacaovsnc](https://github.com/yacaovsnc) in [#797](actions/upload-artifact#797) **Full Changelog**: <actions/upload-artifact@v7...v7.0.1> --- ##### [\`v7.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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 - Add proxy integration test by [@Link-](https://github.com/Link-) in [#754](actions/upload-artifact#754) - Upgrade the module to ESM and bump dependencies by [@danwkennedy](https://github.com/danwkennedy) in [#762](actions/upload-artifact#762) - Support direct file uploads by [@danwkennedy](https://github.com/danwkennedy) in [#764](actions/upload-artifact#764) #### New Contributors - [@Link-](https://github.com/Link-) made their first contribution in [#754](actions/upload-artifact#754) **Full Changelog**: <actions/upload-artifact@v6...v7.0.0> --- ##### [\`v7\`](actions/upload-artifact@v6...v7) --- ##### [\`v6.0.0\`](actions/upload-artifact@v5.0.0...v6.0.0) --- ##### [\`v6\`](actions/upload-artifact@v5...v6) --- ##### [\`v5.0.0\`](actions/upload-artifact@v4.6.2...v5.0.0) --- ##### [\`v5\`](actions/upload-artifact@v4...v5) --- ##### [\`v4.6.2\`](https://github.com/actions/upload-artifact/releases/tag/v4.6.2) #### What's Changed - Update to use artifact 2.3.2 package & prepare for new upload-artifact release by [@salmanmkc](https://github.com/salmanmkc) in [#685](actions/upload-artifact#685) #### New Contributors - [@salmanmkc](https://github.com/salmanmkc) made their first contribution in [#685](actions/upload-artifact#685) **Full Changelog**: <actions/upload-artifact@v4...v4.6.2> --- ##### [\`v4.6.1\`](https://github.com/actions/upload-artifact/releases/tag/v4.6.1) #### What's Changed - Update to use artifact 2.2.2 package by [@yacaovsnc](https://github.com/yacaovsnc) in [#673](actions/upload-artifact#673) **Full Changelog**: <actions/upload-artifact@v4...v4.6.1> --- ##### [\`v4.6.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.6.0) #### What's Changed - Expose env vars to control concurrency and timeout by [@yacaovsnc](https://github.com/yacaovsnc) in [#662](actions/upload-artifact#662) **Full Changelog**: <actions/upload-artifact@v4...v4.6.0> --- ##### [\`v4.5.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.5.0) #### What's Changed - fix: deprecated `Node.js` version in action by [@hamirmahal](https://github.com/hamirmahal) in [#578](actions/upload-artifact#578) - Add new `artifact-digest` output by [@bdehamer](https://github.com/bdehamer) in [#656](actions/upload-artifact#656) #### New Contributors - [@hamirmahal](https://github.com/hamirmahal) made their first contribution in [#578](actions/upload-artifact#578) - [@bdehamer](https://github.com/bdehamer) made their first contribution in [#656](actions/upload-artifact#656) **Full Changelog**: <actions/upload-artifact@v4.4.3...v4.5.0> --- ##### [\`v4.4.3\`](https://github.com/actions/upload-artifact/releases/tag/v4.4.3) #### What's Changed - Undo indirect dependency updates from [#627](actions/upload-artifact#627) by [@joshmgross](https://github.com/joshmgross) in [#632](actions/upload-artifact#632) **Full Changelog**: <actions/upload-artifact@v4.4.2...v4.4.3> --- ##### [\`v4.4.2\`](https://github.com/actions/upload-artifact/releases/tag/v4.4.2) #### What's Changed - Bump `@actions/artifact` to 2.1.11 by [@robherley](https://github.com/robherley) in [#627](actions/upload-artifact#627) - Includes fix for relative symlinks not resolving properly **Full Changelog**: <actions/upload-artifact@v4.4.1...v4.4.2> --- ##### [\`v4.4.1\`](https://github.com/actions/upload-artifact/releases/tag/v4.4.1) #### What's Changed - Add a section about hidden files by [@joshmgross](https://github.com/joshmgross) in [#607](actions/upload-artifact#607) - Add workflow file for publishing releases to immutable action package by [@Jcambass](https://github.com/Jcambass) in [#621](actions/upload-artifact#621) - Update [@actions/artifact](https://github.com/actions/artifact) to latest version, includes symlink and timeout fixes by [@robherley](https://github.com/robherley) in [#625](actions/upload-artifact#625) #### New Contributors - [@Jcambass](https://github.com/Jcambass) made their first contribution in [#621](actions/upload-artifact#621) **Full Changelog**: <actions/upload-artifact@v4.4.0...v4.4.1> --- ##### [\`v4.4.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.4.0) #### Notice: Breaking Changes⚠️ We will no longer include hidden files and folders by default in the `upload-artifact` action of this version. This reduces the risk that credentials are accidentally uploaded into artifacts. Customers who need to continue to upload these files can use a new option, `include-hidden-files`, to continue to do so. See ["Notice of upcoming deprecations and breaking changes in GitHub Actions runners"](https://github.blog/changelog/2024-08-19-notice-of-upcoming-deprecations-and-breaking-changes-in-github-actions-runners/) changelog and [this issue](actions/upload-artifact#602) for more details. #### What's Changed - Exclude hidden files by default by [@joshmgross](https://github.com/joshmgross) in [#598](actions/upload-artifact#598) **Full Changelog**: <actions/upload-artifact@v4.3.6...v4.4.0> --- ##### [\`v4.3.6\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.6) #### What's Changed - Revert to [@actions/artifact](https://github.com/actions/artifact) 2.1.8 by [@robherley](https://github.com/robherley) in [#594](actions/upload-artifact#594) **Full Changelog**: <actions/upload-artifact@v4...v4.3.6> --- ##### [\`v4.3.5\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.5) #### What's Changed - Bump [@actions/artifact](https://github.com/actions/artifact) to v2.1.9 by [@robherley](https://github.com/robherley) in [#588](actions/upload-artifact#588) - Fixed artifact upload chunk timeout logic [#1774](actions/toolkit#1774) - Use lazy stream to prevent issues with open file limits [#1771](actions/toolkit#1771) **Full Changelog**: <actions/upload-artifact@v4.3.4...v4.3.5> --- ##### [\`v4.3.4\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.4) #### What's Changed - Update [@actions/artifact](https://github.com/actions/artifact) version, bump dependencies by [@robherley](https://github.com/robherley) in [#584](actions/upload-artifact#584) **Full Changelog**: <actions/upload-artifact@v4.3.3...v4.3.4> --- ##### [\`v4.3.3\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3) #### What's Changed - updating `@actions/artifact` dependency to v2.1.6 by [@eggyhead](https://github.com/eggyhead) in [#565](actions/upload-artifact#565) **Full Changelog**: <actions/upload-artifact@v4.3.2...v4.3.3> --- ##### [\`v4.3.2\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2) #### What's Changed - Update release-new-action-version.yml by [@konradpabjan](https://github.com/konradpabjan) in [#516](actions/upload-artifact#516) - Minor fix to the migration readme by [@andrewakim](https://github.com/andrewakim) in [#523](actions/upload-artifact#523) - Update readme with v3/v2/v1 deprecation notice by [@robherley](https://github.com/robherley) in [#561](actions/upload-artifact#561) - updating `@actions/artifact` dependency to v2.1.5 and `@actions/core` to v1.0.1 by [@eggyhead](https://github.com/eggyhead) in [#562](actions/upload-artifact#562) #### New Contributors - [@andrewakim](https://github.com/andrewakim) made their first contribution in [#523](actions/upload-artifact#523) **Full Changelog**: <actions/upload-artifact@v4.3.1...v4.3.2> --- ##### [\`v4.3.1\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.1) - Bump [@actions/artifacts](https://github.com/actions/artifacts) to latest version to include [updated GHES host check](actions/toolkit#1648) --- ##### [\`v4.3.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.0) #### What's Changed - Reorganize upload code in prep for merge logic & add more tests by [@robherley](https://github.com/robherley) in [#504](actions/upload-artifact#504) - Add sub-action to merge artifacts by [@robherley](https://github.com/robherley) in [#505](actions/upload-artifact#505) **Full Changelog**: <actions/upload-artifact@v4...v4.3.0> --- ##### [\`v4.2.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.2.0) #### What's Changed - Ability to overwrite an Artifact by [@robherley](https://github.com/robherley) in [#501](actions/upload-artifact#501) **Full Changelog**: <actions/upload-artifact@v4...v4.2.0> --- ##### [\`v4.1.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.1.0) #### What's Changed - Add migrations docs by [@robherley](https://github.com/robherley) in [#482](actions/upload-artifact#482) - Update README.md by [@samuelwine](https://github.com/samuelwine) in [#492](actions/upload-artifact#492) - Support artifact-url output by [@konradpabjan](https://github.com/konradpabjan) in [#496](actions/upload-artifact#496) - Update readme to reflect new 500 artifact per job limit by [@robherley](https://github.com/robherley) in [#497](actions/upload-artifact#497) #### New Contributors - [@samuelwine](https://github.com/samuelwine) made their first contribution in [#492](actions/upload-artifact#492) **Full Changelog**: <actions/upload-artifact@v4...v4.1.0>
renovate Bot
added a commit
to sdwilsh/sOS
that referenced
this pull request
Jun 11, 2026
##### [\`v7.0.1\`](https://github.com/actions/upload-artifact/releases/tag/v7.0.1) ##### What's Changed - Update the readme with direct upload details by [@danwkennedy](https://github.com/danwkennedy) in [#795](actions/upload-artifact#795) - Readme: bump all the example versions to v7 by [@danwkennedy](https://github.com/danwkennedy) in [#796](actions/upload-artifact#796) - Include changes in typespec/ts-http-runtime 0.3.5 by [@yacaovsnc](https://github.com/yacaovsnc) in [#797](actions/upload-artifact#797) **Full Changelog**: <actions/upload-artifact@v7...v7.0.1> --- ##### [\`v7.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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 - Add proxy integration test by [@Link-](https://github.com/Link-) in [#754](actions/upload-artifact#754) - Upgrade the module to ESM and bump dependencies by [@danwkennedy](https://github.com/danwkennedy) in [#762](actions/upload-artifact#762) - Support direct file uploads by [@danwkennedy](https://github.com/danwkennedy) in [#764](actions/upload-artifact#764) #### New Contributors - [@Link-](https://github.com/Link-) made their first contribution in [#754](actions/upload-artifact#754) **Full Changelog**: <actions/upload-artifact@v6...v7.0.0> --- ##### [\`v7\`](actions/upload-artifact@v6...v7) --- ##### [\`v6.0.0\`](actions/upload-artifact@v5.0.0...v6.0.0) --- ##### [\`v6\`](actions/upload-artifact@v5...v6) --- ##### [\`v5.0.0\`](actions/upload-artifact@v4.6.2...v5.0.0) --- ##### [\`v5\`](actions/upload-artifact@v4...v5)
onap-github
pushed a commit
to onap/policy-pap
that referenced
this pull request
Jun 16, 2026
## 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 Add proxy integration test by @Link- in actions/upload-artifact#754 Upgrade the module to ESM and bump dependencies by @danwkennedy in actions/upload-artifact#762 Support direct file uploads by @danwkennedy in actions/upload-artifact#764 New Contributors @Link- made their first contribution in actions/upload-artifact#754 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 Upload Artifact Node 24 support by @salmanmkc in actions/upload-artifact#719 fix: update @actions/artifact for Node.js 24 punycode deprecation by @salmanmkc in actions/upload-artifact#744 prepare release v6.0.0 for Node.js 24 support by @salmanmkc in actions/upload-artifact#745 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. Update README.md by @GhadimiR in actions/upload-artifact#681 Update README.md by @nebuk89 in actions/upload-artifact#712 Readme: spell out the first use of GHES by @danwkennedy in actions/upload-artifact#727 Update GHES guidance to include reference to Node 20 version by @patrikpolyak in actions/upload-artifact#725 Bump @actions/artifact to v4.0.0 Prepare v5.0.0 by @danwkennedy in actions/upload-artifact#734 ... (truncated) ## Commits 043fb46 Merge pull request #797 from actions/yacaovsnc/update-dependency 634250c Include changes in typespec/ts-http-runtime 0.3.5 e454baa Readme: bump all the example versions to v7 (#796) 74fad66 Update the readme with direct upload details (#795) 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 Additional commits viewable in compare view  Issue-ID: CIMAN-33 Signed-off-by: dependabot[bot] <support@github.com> Change-Id: I07221a26e7aaa8f7f5475284298d6049e399aa8d GitHub-PR: #9 GitHub-Hash: a63b8c13c7da0262 Signed-off-by: onap.gh2gerrit <releng+onap-gh2gerrit@linuxfoundation.org>
renovate Bot
added a commit
to sdwilsh/sOS
that referenced
this pull request
Jun 18, 2026
##### [\`v7.0.1\`](https://github.com/actions/upload-artifact/releases/tag/v7.0.1) #### What's Changed - Update the readme with direct upload details by [@danwkennedy](https://github.com/danwkennedy) in [#795](actions/upload-artifact#795) - Readme: bump all the example versions to v7 by [@danwkennedy](https://github.com/danwkennedy) in [#796](actions/upload-artifact#796) - Include changes in typespec/ts-http-runtime 0.3.5 by [@yacaovsnc](https://github.com/yacaovsnc) in [#797](actions/upload-artifact#797) **Full Changelog**: <actions/upload-artifact@v7...v7.0.1> --- ##### [\`v7.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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 - Add proxy integration test by [@Link-](https://github.com/Link-) in [#754](actions/upload-artifact#754) - Upgrade the module to ESM and bump dependencies by [@danwkennedy](https://github.com/danwkennedy) in [#762](actions/upload-artifact#762) - Support direct file uploads by [@danwkennedy](https://github.com/danwkennedy) in [#764](actions/upload-artifact#764) #### New Contributors - [@Link-](https://github.com/Link-) made their first contribution in [#754](actions/upload-artifact#754) **Full Changelog**: <actions/upload-artifact@v6...v7.0.0> --- ##### [\`v7\`](actions/upload-artifact@v6.0.0...v7) --- ##### [\`v6.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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 - Upload Artifact Node 24 support by [@salmanmkc](https://github.com/salmanmkc) in [#719](actions/upload-artifact#719) - fix: update [@actions/artifact](https://github.com/actions/artifact) for Node.js 24 punycode deprecation by [@salmanmkc](https://github.com/salmanmkc) in [#744](actions/upload-artifact#744) - prepare release v6.0.0 for Node.js 24 support by [@salmanmkc](https://github.com/salmanmkc) in [#745](actions/upload-artifact#745) **Full Changelog**: <actions/upload-artifact@v5.0.0...v6.0.0> --- ##### [\`v6\`](actions/upload-artifact@v5.0.0...v6.0.0) --- ##### [\`v5.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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. - Update README.md by [@GhadimiR](https://github.com/GhadimiR) in [#681](actions/upload-artifact#681) - Update README.md by [@nebuk89](https://github.com/nebuk89) in [#712](actions/upload-artifact#712) - Readme: spell out the first use of GHES by [@danwkennedy](https://github.com/danwkennedy) in [#727](actions/upload-artifact#727) - Update GHES guidance to include reference to Node 20 version by [@patrikpolyak](https://github.com/patrikpolyak) in [#725](actions/upload-artifact#725) - Bump `@actions/artifact` to `v4.0.0` - Prepare `v5.0.0` by [@danwkennedy](https://github.com/danwkennedy) in [#734](actions/upload-artifact#734) #### New Contributors - [@GhadimiR](https://github.com/GhadimiR) made their first contribution in [#681](actions/upload-artifact#681) - [@nebuk89](https://github.com/nebuk89) made their first contribution in [#712](actions/upload-artifact#712) - [@danwkennedy](https://github.com/danwkennedy) made their first contribution in [#727](actions/upload-artifact#727) - [@patrikpolyak](https://github.com/patrikpolyak) made their first contribution in [#725](actions/upload-artifact#725) **Full Changelog**: <actions/upload-artifact@v4...v5.0.0> --- ##### [\`v5\`](actions/upload-artifact@v4.6.2...v5.0.0)
luketainton
pushed a commit
to luketainton/repos_epage-go
that referenced
this pull request
Jun 19, 2026
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/upload-artifact](https://github.com/actions/upload-artifact) | action | major | `v3` → `v7` | --- ### Release Notes <details> <summary>actions/upload-artifact (actions/upload-artifact)</summary> ### [`v7.0.1`](https://github.com/actions/upload-artifact/releases/tag/v7.0.1) [Compare Source](actions/upload-artifact@v7...v7.0.1) #### What's Changed - Update the readme with direct upload details by [@​danwkennedy](https://github.com/danwkennedy) in [#​795](actions/upload-artifact#795) - Readme: bump all the example versions to v7 by [@​danwkennedy](https://github.com/danwkennedy) in [#​796](actions/upload-artifact#796) - Include changes in typespec/ts-http-runtime 0.3.5 by [@​yacaovsnc](https://github.com/yacaovsnc) in [#​797](actions/upload-artifact#797) **Full Changelog**: <actions/upload-artifact@v7...v7.0.1> ### [`v7.0.0`](https://github.com/actions/upload-artifact/releases/tag/v7.0.0) [Compare Source](actions/upload-artifact@v7...v7) #### 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 - Add proxy integration test by [@​Link-](https://github.com/Link-) in [#​754](actions/upload-artifact#754) - Upgrade the module to ESM and bump dependencies by [@​danwkennedy](https://github.com/danwkennedy) in [#​762](actions/upload-artifact#762) - Support direct file uploads by [@​danwkennedy](https://github.com/danwkennedy) in [#​764](actions/upload-artifact#764) #### New Contributors - [@​Link-](https://github.com/Link-) made their first contribution in [#​754](actions/upload-artifact#754) **Full Changelog**: <actions/upload-artifact@v6...v7.0.0> ### [`v7`](actions/upload-artifact@v6.0.0...v7) [Compare Source](actions/upload-artifact@v6.0.0...v7) ### [`v6.0.0`](https://github.com/actions/upload-artifact/releases/tag/v6.0.0) [Compare Source](actions/upload-artifact@v6.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 - Upload Artifact Node 24 support by [@​salmanmkc](https://github.com/salmanmkc) in [#​719](actions/upload-artifact#719) - fix: update [@​actions/artifact](https://github.com/actions/artifact) for Node.js 24 punycode deprecation by [@​salmanmkc](https://github.com/salmanmkc) in [#​744](actions/upload-artifact#744) - prepare release v6.0.0 for Node.js 24 support by [@​salmanmkc](https://github.com/salmanmkc) in [#​745](actions/upload-artifact#745) **Full Changelog**: <actions/upload-artifact@v5.0.0...v6.0.0> ### [`v6`](actions/upload-artifact@v5.0.0...v6.0.0) [Compare Source](actions/upload-artifact@v5.0.0...v6.0.0) ### [`v5.0.0`](https://github.com/actions/upload-artifact/releases/tag/v5.0.0) [Compare Source](actions/upload-artifact@v5.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. - Update README.md by [@​GhadimiR](https://github.com/GhadimiR) in [#​681](actions/upload-artifact#681) - Update README.md by [@​nebuk89](https://github.com/nebuk89) in [#​712](actions/upload-artifact#712) - Readme: spell out the first use of GHES by [@​danwkennedy](https://github.com/danwkennedy) in [#​727](actions/upload-artifact#727) - Update GHES guidance to include reference to Node 20 version by [@​patrikpolyak](https://github.com/patrikpolyak) in [#​725](actions/upload-artifact#725) - Bump `@actions/artifact` to `v4.0.0` - Prepare `v5.0.0` by [@​danwkennedy](https://github.com/danwkennedy) in [#​734](actions/upload-artifact#734) #### New Contributors - [@​GhadimiR](https://github.com/GhadimiR) made their first contribution in [#​681](actions/upload-artifact#681) - [@​nebuk89](https://github.com/nebuk89) made their first contribution in [#​712](actions/upload-artifact#712) - [@​danwkennedy](https://github.com/danwkennedy) made their first contribution in [#​727](actions/upload-artifact#727) - [@​patrikpolyak](https://github.com/patrikpolyak) made their first contribution in [#​725](actions/upload-artifact#725) **Full Changelog**: <actions/upload-artifact@v4...v5.0.0> ### [`v5`](actions/upload-artifact@v4.6.2...v5.0.0) [Compare Source](actions/upload-artifact@v4.6.2...v5.0.0) ### [`v4.6.2`](https://github.com/actions/upload-artifact/releases/tag/v4.6.2) [Compare Source](actions/upload-artifact@v4.6.1...v4.6.2) #### What's Changed - Update to use artifact 2.3.2 package & prepare for new upload-artifact release by [@​salmanmkc](https://github.com/salmanmkc) in [#​685](actions/upload-artifact#685) #### New Contributors - [@​salmanmkc](https://github.com/salmanmkc) made their first contribution in [#​685](actions/upload-artifact#685) **Full Changelog**: <actions/upload-artifact@v4...v4.6.2> ### [`v4.6.1`](https://github.com/actions/upload-artifact/releases/tag/v4.6.1) [Compare Source](actions/upload-artifact@v4.6.0...v4.6.1) #### What's Changed - Update to use artifact 2.2.2 package by [@​yacaovsnc](https://github.com/yacaovsnc) in [#​673](actions/upload-artifact#673) **Full Changelog**: <actions/upload-artifact@v4...v4.6.1> ### [`v4.6.0`](https://github.com/actions/upload-artifact/releases/tag/v4.6.0) [Compare Source](actions/upload-artifact@v4.5.0...v4.6.0) #### What's Changed - Expose env vars to control concurrency and timeout by [@​yacaovsnc](https://github.com/yacaovsnc) in [#​662](actions/upload-artifact#662) **Full Changelog**: <actions/upload-artifact@v4...v4.6.0> ### [`v4.5.0`](https://github.com/actions/upload-artifact/releases/tag/v4.5.0) [Compare Source](actions/upload-artifact@v4.4.3...v4.5.0) #### What's Changed - fix: deprecated `Node.js` version in action by [@​hamirmahal](https://github.com/hamirmahal) in [#​578](actions/upload-artifact#578) - Add new `artifact-digest` output by [@​bdehamer](https://github.com/bdehamer) in [#​656](actions/upload-artifact#656) #### New Contributors - [@​hamirmahal](https://github.com/hamirmahal) made their first contribution in [#​578](actions/upload-artifact#578) - [@​bdehamer](https://github.com/bdehamer) made their first contribution in [#​656](actions/upload-artifact#656) **Full Changelog**: <actions/upload-artifact@v4.4.3...v4.5.0> ### [`v4.4.3`](https://github.com/actions/upload-artifact/releases/tag/v4.4.3) [Compare Source](actions/upload-artifact@v4.4.2...v4.4.3) #### What's Changed - Undo indirect dependency updates from [#​627](actions/upload-artifact#627) by [@​joshmgross](https://github.com/joshmgross) in [#​632](actions/upload-artifact#632) **Full Changelog**: <actions/upload-artifact@v4.4.2...v4.4.3> ### [`v4.4.2`](https://github.com/actions/upload-artifact/releases/tag/v4.4.2) [Compare Source](actions/upload-artifact@v4.4.1...v4.4.2) #### What's Changed - Bump `@actions/artifact` to 2.1.11 by [@​robherley](https://github.com/robherley) in [#​627](actions/upload-artifact#627) - Includes fix for relative symlinks not resolving properly **Full Changelog**: <actions/upload-artifact@v4.4.1...v4.4.2> ### [`v4.4.1`](https://github.com/actions/upload-artifact/releases/tag/v4.4.1) [Compare Source](actions/upload-artifact@v4.4.0...v4.4.1) #### What's Changed - Add a section about hidden files by [@​joshmgross](https://github.com/joshmgross) in [#​607](actions/upload-artifact#607) - Add workflow file for publishing releases to immutable action package by [@​Jcambass](https://github.com/Jcambass) in [#​621](actions/upload-artifact#621) - Update [@​actions/artifact](https://github.com/actions/artifact) to latest version, includes symlink and timeout fixes by [@​robherley](https://github.com/robherley) in [#​625](actions/upload-artifact#625) #### New Contributors - [@​Jcambass](https://github.com/Jcambass) made their first contribution in [#​621](actions/upload-artifact#621) **Full Changelog**: <actions/upload-artifact@v4.4.0...v4.4.1> ### [`v4.4.0`](https://github.com/actions/upload-artifact/releases/tag/v4.4.0) [Compare Source](actions/upload-artifact@v4.3.6...v4.4.0) #### Notice: Breaking Changes⚠️ We will no longer include hidden files and folders by default in the `upload-artifact` action of this version. This reduces the risk that credentials are accidentally uploaded into artifacts. Customers who need to continue to upload these files can use a new option, `include-hidden-files`, to continue to do so. See ["Notice of upcoming deprecations and breaking changes in GitHub Actions runners"](https://github.blog/changelog/2024-08-19-notice-of-upcoming-deprecations-and-breaking-changes-in-github-actions-runners/) changelog and [this issue](actions/upload-artifact#602) for more details. #### What's Changed - Exclude hidden files by default by [@​joshmgross](https://github.com/joshmgross) in [#​598](actions/upload-artifact#598) **Full Changelog**: <actions/upload-artifact@v4.3.6...v4.4.0> ### [`v4.3.6`](https://github.com/actions/upload-artifact/releases/tag/v4.3.6) [Compare Source](actions/upload-artifact@v4.3.5...v4.3.6) #### What's Changed - Revert to [@​actions/artifact](https://github.com/actions/artifact) 2.1.8 by [@​robherley](https://github.com/robherley) in [#​594](actions/upload-artifact#594) **Full Changelog**: <actions/upload-artifact@v4...v4.3.6> ### [`v4.3.5`](https://github.com/actions/upload-artifact/releases/tag/v4.3.5) [Compare Source](actions/upload-artifact@v4.3.4...v4.3.5) #### What's Changed - Bump [@​actions/artifact](https://github.com/actions/artifact) to v2.1.9 by [@​robherley](https://github.com/robherley) in [#​588](actions/upload-artifact#588) - Fixed artifact upload chunk timeout logic [#​1774](actions/toolkit#1774) - Use lazy stream to prevent issues with open file limits [#​1771](actions/toolkit#1771) **Full Changelog**: <actions/upload-artifact@v4.3.4...v4.3.5> ### [`v4.3.4`](https://github.com/actions/upload-artifact/releases/tag/v4.3.4) [Compare Source](actions/upload-artifact@v4.3.3...v4.3.4) #### What's Changed - Update [@​actions/artifact](https://github.com/actions/artifact) version, bump dependencies by [@​robherley](https://github.com/robherley) in [#​584](actions/upload-artifact#584) **Full Changelog**: <actions/upload-artifact@v4.3.3...v4.3.4> ### [`v4.3.3`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3) [Compare Source](actions/upload-artifact@v4.3.2...v4.3.3) #### What's Changed - updating `@actions/artifact` dependency to v2.1.6 by [@​eggyhead](https://github.com/eggyhead) in [#​565](actions/upload-artifact#565) **Full Changelog**: <actions/upload-artifact@v4.3.2...v4.3.3> ### [`v4.3.2`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2) [Compare Source](actions/upload-artifact@v4.3.1...v4.3.2) #### What's Changed - Update release-new-action-version.yml by [@​konradpabjan](https://github.com/konradpabjan) in [#​516](actions/upload-artifact#516) - Minor fix to the migration readme by [@​andrewakim](https://github.com/andrewakim) in [#​523](actions/upload-artifact#523) - Update readme with v3/v2/v1 deprecation notice by [@​robherley](https://github.com/robherley) in [#​561](actions/upload-artifact#561) - updating `@actions/artifact` dependency to v2.1.5 and `@actions/core` to v1.0.1 by [@​eggyhead](https://github.com/eggyhead) in [#​562](actions/upload-artifact#562) #### New Contributors - [@​andrewakim](https://github.com/andrewakim) made their first contribution in [#​523](actions/upload-artifact#523) **Full Changelog**: <actions/upload-artifact@v4.3.1...v4.3.2> ### [`v4.3.1`](https://github.com/actions/upload-artifact/releases/tag/v4.3.1) [Compare Source](actions/upload-artifact@v4.3.0...v4.3.1) - Bump [@​actions/artifacts](https://github.com/actions/artifacts) to latest version to include [updated GHES host check](actions/toolkit#1648) ### [`v4.3.0`](https://github.com/actions/upload-artifact/releases/tag/v4.3.0) [Compare Source](actions/upload-artifact@v4.2.0...v4.3.0) #### What's Changed - Reorganize upload code in prep for merge logic & add more tests by [@​robherley](https://github.com/robherley) in [#​504](actions/upload-artifact#504) - Add sub-action to merge artifacts by [@​robherley](https://github.com/robherley) in [#​505](actions/upload-artifact#505) **Full Changelog**: <actions/upload-artifact@v4...v4.3.0> ### [`v4.2.0`](https://github.com/actions/upload-artifact/releases/tag/v4.2.0) [Compare Source](actions/upload-artifact@v4.1.0...v4.2.0) #### What's Changed - Ability to overwrite an Artifact by [@​robherley](https://github.com/robherley) in [#​501](actions/upload-artifact#501) **Full Changelog**: <actions/upload-artifact@v4...v4.2.0> ### [`v4.1.0`](https://github.com/actions/upload-artifact/releases/tag/v4.1.0) [Compare Source](actions/upload-artifact@v4...v4.1.0) #### What's Changed - Add migrations docs by [@​robherley](https://github.com/robherley) in [#​482](actions/upload-artifact#482) - Update README.md by [@​samuelwine](https://github.com/samuelwine) in [#​492](actions/upload-artifact#492) - Support artifact-url output by [@​konradpabjan](https://github.com/konradpabjan) in [#​496](actions/upload-artifact#496) - Update readme to reflect new 500 artifact per job limit by [@​robherley](https://github.com/robherley) in [#​497](actions/upload-artifact#497) #### New Contributors - [@​samuelwine](https://github.com/samuelwine) made their first contribution in [#​492](actions/upload-artifact#492) **Full Changelog**: <actions/upload-artifact@v4...v4.1.0> ### [`v4.0.0`](https://github.com/actions/upload-artifact/releases/tag/v4.0.0) [Compare Source](actions/upload-artifact@v4...v4) #### What's Changed The release of upload-artifact\@​v4 and download-artifact\@​v4 are major changes to the backend architecture of Artifacts. They have numerous performance and behavioral improvements. ℹ️ However, this is a major update that includes breaking changes. Artifacts created with versions v3 and below are not compatible with the v4 actions. Uploads and downloads *must* use the same major actions versions. There are also key differences from previous versions that may require updates to your workflows. For more information, please see: 1. The [changelog](https://github.blog/changelog/2023-12-14-github-actions-artifacts-v4-is-now-generally-available/) post. 2. The [README](https://github.com/actions/upload-artifact/blob/main/README.md). 3. The [migration documentation](https://github.com/actions/upload-artifact/blob/main/docs/MIGRATION.md). 4. As well as the underlying npm package, [@​actions/artifact](https://github.com/actions/toolkit/tree/main/packages/artifact) documentation. #### New Contributors - [@​vmjoseph](https://github.com/vmjoseph) made their first contribution in [#​464](actions/upload-artifact#464) **Full Changelog**: <actions/upload-artifact@v3...v4.0.0> ### [`v4`](actions/upload-artifact@v3.2.2...v4) [Compare Source](actions/upload-artifact@v3.2.2...v4) </details> --- ### Configuration 📅 **Schedule**: (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 is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](undefined) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNTAuMCIsInVwZGF0ZWRJblZlciI6IjQzLjIzMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJ0eXBlL2RlcGVuZGVuY2llcyJdfQ==--> Reviewed-on: https://git.tainton.uk/repos/epage-go/pulls/10 Co-authored-by: renovate[bot] <renovate-bot@git.tainton.uk> Co-committed-by: renovate[bot] <renovate-bot@git.tainton.uk>
onap-github
pushed a commit
to onap/policy-api
that referenced
this pull request
Jun 22, 2026
## 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 Add proxy integration test by @Link- in actions/upload-artifact#754 Upgrade the module to ESM and bump dependencies by @danwkennedy in actions/upload-artifact#762 Support direct file uploads by @danwkennedy in actions/upload-artifact#764 New Contributors @Link- made their first contribution in actions/upload-artifact#754 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 Upload Artifact Node 24 support by @salmanmkc in actions/upload-artifact#719 fix: update @actions/artifact for Node.js 24 punycode deprecation by @salmanmkc in actions/upload-artifact#744 prepare release v6.0.0 for Node.js 24 support by @salmanmkc in actions/upload-artifact#745 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. Update README.md by @GhadimiR in actions/upload-artifact#681 Update README.md by @nebuk89 in actions/upload-artifact#712 Readme: spell out the first use of GHES by @danwkennedy in actions/upload-artifact#727 Update GHES guidance to include reference to Node 20 version by @patrikpolyak in actions/upload-artifact#725 Bump @actions/artifact to v4.0.0 Prepare v5.0.0 by @danwkennedy in actions/upload-artifact#734 ... (truncated) ## Commits 043fb46 Merge pull request #797 from actions/yacaovsnc/update-dependency 634250c Include changes in typespec/ts-http-runtime 0.3.5 e454baa Readme: bump all the example versions to v7 (#796) 74fad66 Update the readme with direct upload details (#795) 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 Additional commits viewable in compare view  Issue-ID: CIMAN-33 Signed-off-by: dependabot[bot] <support@github.com> Change-Id: I65698b44fa85ffe3fa7587198dc95b93f93d6312 GitHub-PR: #9 GitHub-Hash: c0f982f62fb3b605 Signed-off-by: onap.gh2gerrit <releng+onap-gh2gerrit@linuxfoundation.org>
onap-github
pushed a commit
to onap/policy-opa-pdp
that referenced
this pull request
Jun 22, 2026
## 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 Add proxy integration test by @Link- in actions/upload-artifact#754 Upgrade the module to ESM and bump dependencies by @danwkennedy in actions/upload-artifact#762 Support direct file uploads by @danwkennedy in actions/upload-artifact#764 New Contributors @Link- made their first contribution in actions/upload-artifact#754 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 Upload Artifact Node 24 support by @salmanmkc in actions/upload-artifact#719 fix: update @actions/artifact for Node.js 24 punycode deprecation by @salmanmkc in actions/upload-artifact#744 prepare release v6.0.0 for Node.js 24 support by @salmanmkc in actions/upload-artifact#745 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. Update README.md by @GhadimiR in actions/upload-artifact#681 Update README.md by @nebuk89 in actions/upload-artifact#712 Readme: spell out the first use of GHES by @danwkennedy in actions/upload-artifact#727 Update GHES guidance to include reference to Node 20 version by @patrikpolyak in actions/upload-artifact#725 Bump @actions/artifact to v4.0.0 Prepare v5.0.0 by @danwkennedy in actions/upload-artifact#734 ... (truncated) ## Commits 043fb46 Merge pull request #797 from actions/yacaovsnc/update-dependency 634250c Include changes in typespec/ts-http-runtime 0.3.5 e454baa Readme: bump all the example versions to v7 (#796) 74fad66 Update the readme with direct upload details (#795) 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 Additional commits viewable in compare view  Issue-ID: CIMAN-33 Signed-off-by: dependabot[bot] <support@github.com> Change-Id: I9ecbe5ef026bea1cffee80fcc3e8e67eea90212a GitHub-PR: #23 GitHub-Hash: 25603fb130a13956 Signed-off-by: onap.gh2gerrit <releng+onap-gh2gerrit@linuxfoundation.org>
onap-github
pushed a commit
to onap/policy-drools-applications
that referenced
this pull request
Jun 22, 2026
## 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 Add proxy integration test by @Link- in actions/upload-artifact#754 Upgrade the module to ESM and bump dependencies by @danwkennedy in actions/upload-artifact#762 Support direct file uploads by @danwkennedy in actions/upload-artifact#764 New Contributors @Link- made their first contribution in actions/upload-artifact#754 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 Upload Artifact Node 24 support by @salmanmkc in actions/upload-artifact#719 fix: update @actions/artifact for Node.js 24 punycode deprecation by @salmanmkc in actions/upload-artifact#744 prepare release v6.0.0 for Node.js 24 support by @salmanmkc in actions/upload-artifact#745 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. Update README.md by @GhadimiR in actions/upload-artifact#681 Update README.md by @nebuk89 in actions/upload-artifact#712 Readme: spell out the first use of GHES by @danwkennedy in actions/upload-artifact#727 Update GHES guidance to include reference to Node 20 version by @patrikpolyak in actions/upload-artifact#725 Bump @actions/artifact to v4.0.0 Prepare v5.0.0 by @danwkennedy in actions/upload-artifact#734 ... (truncated) ## Commits 043fb46 Merge pull request #797 from actions/yacaovsnc/update-dependency 634250c Include changes in typespec/ts-http-runtime 0.3.5 e454baa Readme: bump all the example versions to v7 (#796) 74fad66 Update the readme with direct upload details (#795) 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 Additional commits viewable in compare view  Issue-ID: CIMAN-33 Signed-off-by: dependabot[bot] <support@github.com> Change-Id: I0bc8500ab9d4bbe3b412abfa3037fdc0fe26c9a6 GitHub-PR: #12 GitHub-Hash: 316b020a36aead4c Signed-off-by: onap.gh2gerrit <releng+onap-gh2gerrit@linuxfoundation.org>
onap-github
pushed a commit
to onap/policy-apex-pdp
that referenced
this pull request
Jun 22, 2026
## 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 Add proxy integration test by @Link- in actions/upload-artifact#754 Upgrade the module to ESM and bump dependencies by @danwkennedy in actions/upload-artifact#762 Support direct file uploads by @danwkennedy in actions/upload-artifact#764 New Contributors @Link- made their first contribution in actions/upload-artifact#754 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 Upload Artifact Node 24 support by @salmanmkc in actions/upload-artifact#719 fix: update @actions/artifact for Node.js 24 punycode deprecation by @salmanmkc in actions/upload-artifact#744 prepare release v6.0.0 for Node.js 24 support by @salmanmkc in actions/upload-artifact#745 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. Update README.md by @GhadimiR in actions/upload-artifact#681 Update README.md by @nebuk89 in actions/upload-artifact#712 Readme: spell out the first use of GHES by @danwkennedy in actions/upload-artifact#727 Update GHES guidance to include reference to Node 20 version by @patrikpolyak in actions/upload-artifact#725 Bump @actions/artifact to v4.0.0 Prepare v5.0.0 by @danwkennedy in actions/upload-artifact#734 ... (truncated) ## Commits 043fb46 Merge pull request #797 from actions/yacaovsnc/update-dependency 634250c Include changes in typespec/ts-http-runtime 0.3.5 e454baa Readme: bump all the example versions to v7 (#796) 74fad66 Update the readme with direct upload details (#795) 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 Additional commits viewable in compare view  Issue-ID: CIMAN-33 Signed-off-by: dependabot[bot] <support@github.com> Change-Id: I9dcbe948ba4fef2630628a29eb2abb178a1e15d0 GitHub-PR: #12 GitHub-Hash: 7dde604752cf6050 Signed-off-by: onap.gh2gerrit <releng+onap-gh2gerrit@linuxfoundation.org> Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
onap-github
pushed a commit
to onap/policy-xacml-pdp
that referenced
this pull request
Jun 23, 2026
## 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 Add proxy integration test by @Link- in actions/upload-artifact#754 Upgrade the module to ESM and bump dependencies by @danwkennedy in actions/upload-artifact#762 Support direct file uploads by @danwkennedy in actions/upload-artifact#764 New Contributors @Link- made their first contribution in actions/upload-artifact#754 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 Upload Artifact Node 24 support by @salmanmkc in actions/upload-artifact#719 fix: update @actions/artifact for Node.js 24 punycode deprecation by @salmanmkc in actions/upload-artifact#744 prepare release v6.0.0 for Node.js 24 support by @salmanmkc in actions/upload-artifact#745 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. Update README.md by @GhadimiR in actions/upload-artifact#681 Update README.md by @nebuk89 in actions/upload-artifact#712 Readme: spell out the first use of GHES by @danwkennedy in actions/upload-artifact#727 Update GHES guidance to include reference to Node 20 version by @patrikpolyak in actions/upload-artifact#725 Bump @actions/artifact to v4.0.0 Prepare v5.0.0 by @danwkennedy in actions/upload-artifact#734 ... (truncated) ## Commits 043fb46 Merge pull request #797 from actions/yacaovsnc/update-dependency 634250c Include changes in typespec/ts-http-runtime 0.3.5 e454baa Readme: bump all the example versions to v7 (#796) 74fad66 Update the readme with direct upload details (#795) 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 Additional commits viewable in compare view  Issue-ID: CIMAN-33 Signed-off-by: dependabot[bot] <support@github.com> Change-Id: I8d58848b29ee559e5ccf9cdc485e8f97690c8022 GitHub-PR: #13 GitHub-Hash: b7d9f3ceaefad70f Signed-off-by: onap.gh2gerrit <releng+onap-gh2gerrit@linuxfoundation.org>
tae898
pushed a commit
to humemai/arcadedb-embedded-python
that referenced
this pull request
Jun 28, 2026
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6.0.0 to 7.0.0. Release notes *Sourced from [actions/upload-artifact's releases](https://github.com/actions/upload-artifact/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 > -------------- > > * Add proxy integration test by [`@Link`](https://github.com/Link)- in [actions/upload-artifact#754](https://redirect.github.com/actions/upload-artifact/pull/754) > * Upgrade the module to ESM and bump dependencies by [`@danwkennedy`](https://github.com/danwkennedy) in [actions/upload-artifact#762](https://redirect.github.com/actions/upload-artifact/pull/762) > * Support direct file uploads by [`@danwkennedy`](https://github.com/danwkennedy) in [actions/upload-artifact#764](https://redirect.github.com/actions/upload-artifact/pull/764) > > New Contributors > ---------------- > > * [`@Link`](https://github.com/Link)- made their first contribution in [actions/upload-artifact#754](https://redirect.github.com/actions/upload-artifact/pull/754) > > **Full Changelog**: <actions/upload-artifact@v6...v7.0.0> Commits * [`bbbca2d`](actions/upload-artifact@bbbca2d) Support direct file uploads ([ArcadeData#764](https://redirect.github.com/actions/upload-artifact/issues/764)) * [`589182c`](actions/upload-artifact@589182c) Upgrade the module to ESM and bump dependencies ([ArcadeData#762](https://redirect.github.com/actions/upload-artifact/issues/762)) * [`47309c9`](actions/upload-artifact@47309c9) Merge pull request [ArcadeData#754](https://redirect.github.com/actions/upload-artifact/issues/754) from actions/Link-/add-proxy-integration-tests * [`02a8460`](actions/upload-artifact@02a8460) Add proxy integration test * See full diff in [compare view](actions/upload-artifact@b7c566a...bbbca2d) [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
onap-github
pushed a commit
to onap/sdc-onap-ui-angular
that referenced
this pull request
Jul 8, 2026
## Release notes Sourced from actions/upload-artifact's releases. v7.0.1 What's Changed Update the readme with direct upload details by @danwkennedy in actions/upload-artifact#795 Readme: bump all the example versions to v7 by @danwkennedy in actions/upload-artifact#796 Include changes in typespec/ts-http-runtime 0.3.5 by @yacaovsnc in actions/upload-artifact#797 Full Changelog: actions/upload-artifact@v7...v7.0.1 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 Add proxy integration test by @Link- in actions/upload-artifact#754 Upgrade the module to ESM and bump dependencies by @danwkennedy in actions/upload-artifact#762 Support direct file uploads by @danwkennedy in actions/upload-artifact#764 New Contributors @Link- made their first contribution in actions/upload-artifact#754 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 Upload Artifact Node 24 support by @salmanmkc in actions/upload-artifact#719 fix: update @actions/artifact for Node.js 24 punycode deprecation by @salmanmkc in actions/upload-artifact#744 prepare release v6.0.0 for Node.js 24 support by @salmanmkc in actions/upload-artifact#745 Full Changelog: actions/upload-artifact@v5.0.0...v6.0.0 v5.0.0 What's Changed ... (truncated) ## Commits 043fb46 Merge pull request #797 from actions/yacaovsnc/update-dependency 634250c Include changes in typespec/ts-http-runtime 0.3.5 e454baa Readme: bump all the example versions to v7 (#796) 74fad66 Update the readme with direct upload details (#795) 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 Additional commits viewable in compare view  Issue-ID: CIMAN-33 Signed-off-by: dependabot[bot] <support@github.com> Change-Id: Ic459aaf127bde156687421ffbfedeb476e826074 GitHub-PR: #20 GitHub-Hash: 1d97360a81461d0a Signed-off-by: onap.gh2gerrit <releng+onap-gh2gerrit@linuxfoundation.org>
renovate Bot
added a commit
to sdwilsh/sOS
that referenced
this pull request
Jul 12, 2026
##### [\`v7.0.1\`](https://github.com/actions/upload-artifact/releases/tag/v7.0.1) #### What's Changed - Update the readme with direct upload details by [@danwkennedy](https://github.com/danwkennedy) in [#795](actions/upload-artifact#795) - Readme: bump all the example versions to v7 by [@danwkennedy](https://github.com/danwkennedy) in [#796](actions/upload-artifact#796) - Include changes in typespec/ts-http-runtime 0.3.5 by [@yacaovsnc](https://github.com/yacaovsnc) in [#797](actions/upload-artifact#797) **Full Changelog**: <actions/upload-artifact@v7...v7.0.1> --- ##### [\`v7.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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 - Add proxy integration test by [@Link-](https://github.com/Link-) in [#754](actions/upload-artifact#754) - Upgrade the module to ESM and bump dependencies by [@danwkennedy](https://github.com/danwkennedy) in [#762](actions/upload-artifact#762) - Support direct file uploads by [@danwkennedy](https://github.com/danwkennedy) in [#764](actions/upload-artifact#764) #### New Contributors - [@Link-](https://github.com/Link-) made their first contribution in [#754](actions/upload-artifact#754) **Full Changelog**: <actions/upload-artifact@v6...v7.0.0> --- ##### [\`v7\`](actions/upload-artifact@v6.0.0...v7) --- ##### [\`v6.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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 - Upload Artifact Node 24 support by [@salmanmkc](https://github.com/salmanmkc) in [#719](actions/upload-artifact#719) - fix: update [@actions/artifact](https://github.com/actions/artifact) for Node.js 24 punycode deprecation by [@salmanmkc](https://github.com/salmanmkc) in [#744](actions/upload-artifact#744) - prepare release v6.0.0 for Node.js 24 support by [@salmanmkc](https://github.com/salmanmkc) in [#745](actions/upload-artifact#745) **Full Changelog**: <actions/upload-artifact@v5.0.0...v6.0.0> --- ##### [\`v6\`](actions/upload-artifact@v5.0.0...v6.0.0) --- ##### [\`v5.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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. - Update README.md by [@GhadimiR](https://github.com/GhadimiR) in [#681](actions/upload-artifact#681) - Update README.md by [@nebuk89](https://github.com/nebuk89) in [#712](actions/upload-artifact#712) - Readme: spell out the first use of GHES by [@danwkennedy](https://github.com/danwkennedy) in [#727](actions/upload-artifact#727) - Update GHES guidance to include reference to Node 20 version by [@patrikpolyak](https://github.com/patrikpolyak) in [#725](actions/upload-artifact#725) - Bump `@actions/artifact` to `v4.0.0` - Prepare `v5.0.0` by [@danwkennedy](https://github.com/danwkennedy) in [#734](actions/upload-artifact#734) #### New Contributors - [@GhadimiR](https://github.com/GhadimiR) made their first contribution in [#681](actions/upload-artifact#681) - [@nebuk89](https://github.com/nebuk89) made their first contribution in [#712](actions/upload-artifact#712) - [@danwkennedy](https://github.com/danwkennedy) made their first contribution in [#727](actions/upload-artifact#727) - [@patrikpolyak](https://github.com/patrikpolyak) made their first contribution in [#725](actions/upload-artifact#725) **Full Changelog**: <actions/upload-artifact@v4...v5.0.0> --- ##### [\`v5\`](actions/upload-artifact@v4.6.2...v5.0.0)
onap-github
pushed a commit
to onap/policy-clamp
that referenced
this pull request
Jul 15, 2026
Bumps the github-actions-updates group with 8 updates: | Package | From | To | | --- | --- | --- | | step-security/harden-runner | `2.19.4` | `2.20.0` | | lfreleng-actions/repository-metadata-action | `0.2.1` | `0.2.3` | | lfreleng-actions/github2gerrit-action | `1.3.3` | `1.4.2` | | im-open/workflow-conclusion | `2.2.5` | `3.0.0` | | actions/upload-artifact | `4` | `7` | | lfreleng-actions/checkout-gerrit-change-action | `1.0.1` | `1.0.2` | | 1password/load-secrets-action | `4.0.0` | `4.0.1` | | lfit/releng-reusable-workflows/.github/workflows/reuse-openssf-scorecard.yaml | `0.7.2` | `0.7.4` | Updates `step-security/harden-runner` from 2.19.4 to 2.20.0 ## Release notes Sourced from step-security/harden-runner's releases. v2.20.0 What's Changed Support for block policy for MacOS and Windows GitHub-hosted runners Support for Bitrise MacOS GitHub Actions runners HTTPS monitoring support for Bun for Linux runners (enterprise tier) Full Changelog: step-security/harden-runner@v2.19.4...v2.20.0 ## Commits bf7454d Merge pull request #673 from step-security/fix/aggregate-error-startup-hang 1188420 Update non-TLS agent to v0.16.2 162cfea Update non-TLS agent to v0.16.1 eb9e1f4 Bring macOS runner updates from PR 674 1a10b01 Update Windows agent to v1.0.7 8b4a105 Apply npm audit fixes with release-age cooldown 3626e03 Default TLS status check failures to enabled 100e08b Update agent-ebpf to v1.8.12 774f75f Update agent to v1.8.9 f312657 Extend missing-agent-dir guard to Linux and macOS cleanup paths Additional commits viewable in compare view Updates `lfreleng-actions/repository-metadata-action` from 0.2.1 to 0.2.3 ## Release notes Sourced from lfreleng-actions/repository-metadata-action's releases. v0.2.3 🐛 Bug Fixes 🐛 Fix(deps): Remove uv exclude-newer cooldown @ModeSevenIndustrialSolutions (#119) 🔧 Maintenance 🔧 Chore: Bump release-drafter/release-drafter from 7.4.0 to 7.5.1 @dependabot[bot] (#122) Chore: Bump actions/cache from 5.0.5 to 6.1.0 @dependabot[bot] (#123) Chore: Bump lfreleng-actions/tag-validate-action from 1.0.3 to 1.0.4 @dependabot[bot] (#120) Chore: Bump actions/setup-python from 6.2.0 to 6.3.0 @dependabot[bot] (#121) Chore: pre-commit autoupdate @pre-commit-ci[bot] (#124) 🎓 Code Quality 🎓 CI: Add OpenSSF Scorecard workflow @ModeSevenIndustrialSolutions (#118) Links Submit bugs/feature requests v0.2.2 🐛 Bug Fixes 🐛 Fix: resolve Zizmor findings and bump GitPython @ModeSevenIndustrialSolutions (#117) 🔧 Maintenance 🔧 Chore: pre-commit autoupdate @pre-commit-ci[bot] (#105) Chore: Bump lfreleng-actions/tag-validate-action from 1.0.2 to 1.0.3 @dependabot[bot] (#106) Chore: Bump actions/checkout from 6.0.3 to 7.0.0 @dependabot[bot] (#107) Chore: Bump release-drafter/release-drafter from 7.3.1 to 7.4.0 @dependabot[bot] (#108) Chore: Bump lfreleng-actions/draft-release-promote-action from 0.1.3 to 0.1.4 @dependabot[bot] (#109) Chore: Bump cryptography from 46.0.3 to 48.0.1 @dependabot[bot] (#110) Chore: Bump idna from 3.11 to 3.15 @dependabot[bot] (#111) Chore: Bump urllib3 from 2.6.2 to 2.7.0 @dependabot[bot] (#112) Chore: Bump pyjwt from 2.10.1 to 2.13.0 @dependabot[bot] (#113) Chore: Bump pytest from 7.4.4 to 9.0.3 @dependabot[bot] (#115) Chore: pre-commit autoupdate @pre-commit-ci[bot] (#116) Chore: Bump requests from 2.32.5 to 2.33.0 @dependabot[bot] (#114) Links Submit bugs/feature requests ## Commits 61e837e Merge pull request #124 from lfreleng-actions/pre-commit-ci-update-config 7909703 Chore: pre-commit autoupdate 93407da Merge pull request #121 from lfreleng-actions/dependabot/github_actions/actio 9723574 Merge pull request #120 from lfreleng-actions/dependabot/github_actions/lfrel 437113c Merge pull request #123 from lfreleng-actions/dependabot/github_actions/actio 7fa2f05 Merge pull request #122 from lfreleng-actions/dependabot/github_actions/relea eda4aa4 Chore: Bump actions/cache from 5.0.5 to 6.1.0 073e023 Chore: Bump release-drafter/release-drafter from 7.4.0 to 7.5.1 fe6ad86 Chore: Bump actions/setup-python from 6.2.0 to 6.3.0 619ed6e Chore: Bump lfreleng-actions/tag-validate-action from 1.0.3 to 1.0.4 Additional commits viewable in compare view Updates `lfreleng-actions/github2gerrit-action` from 1.3.3 to 1.4.2 ## Release notes Sourced from lfreleng-actions/github2gerrit-action's releases. v1.4.2 🐛 Bug Fixes 🐛 Fix: Reconcile closed changes and bundle action/workflow @ModeSevenIndustrialSolutions (#330) 🔧 Maintenance 🔧 Chore: Bump astral-sh/setup-uv from 8.2.0 to 8.3.0 @dependabot[bot] (#327) Chore: Bump responses from 0.26.1 to 0.26.2 @dependabot[bot] (#328) Chore: pre-commit autoupdate @pre-commit-ci[bot] (#329) Chore: Bump step-security/harden-runner from 2.19.4 to 2.20.0 @dependabot[bot] (#331) Chore: Bump lfit/releng-reusable-workflows/.github/workflows/reuse-openssf-scorecard.yaml from 0.7.2 to 0.7.4 @dependabot[bot] (#334) Chore: Bump astral-sh/setup-uv from 8.3.0 to 8.3.2 @dependabot[bot] (#332) Chore: Bump mypy from 2.1.0 to 2.2.0 @dependabot[bot] (#333) Chore: Bump hatchling from 1.30.1 to 1.31.0 @dependabot[bot] (#335) 🎓 Code Quality 🎓 CI: Set coverage data_file outside project tree @ModeSevenIndustrialSolutions (#326) Links Submit bugs/feature requests v1.4.1 🐛 Bug Fixes 🐛 Fix: Unify Gerrit topic format across push/query @ModeSevenIndustrialSolutions (#324) 🔧 Maintenance 🔧 Chore: Remove AI-slop comments flagged by aislop @ModeSevenIndustrialSolutions (#325) Links Submit bugs/feature requests v1.4.0 ✨ New Features ✨ Feat: Add Copilot to known automation tools @eb-oss (#296) Feat: Add OpenSSF Scorecard and fix zizmor @ModeSevenIndustrialSolutions (#311) 🐛 Bug Fixes 🐛 Fix(deps): Remove uv exclude-newer cooldown @ModeSevenIndustrialSolutions (#312) ... (truncated) ## Commits 9f32f3c Merge pull request #335 from lfreleng-actions/dependabot/uv/hatchling-1.31.0 86c6955 Merge pull request #333 from lfreleng-actions/dependabot/uv/mypy-2.2.0 c6305b3 Merge pull request #332 from lfreleng-actions/dependabot/github_actions/astra d6a1ecd Merge pull request #334 from lfreleng-actions/dependabot/github_actions/lfit/ 5ae1bf9 Merge pull request #331 from lfreleng-actions/dependabot/github_actions/step- e134af5 Chore: Bump hatchling from 1.30.1 to 1.31.0 5dc30c2 Chore: Bump lfit/releng-reusable-workflows/.github/workflows/reuse-openssf-sc b053702 Chore: Bump mypy from 2.1.0 to 2.2.0 0be7d15 Chore: Bump astral-sh/setup-uv from 8.3.0 to 8.3.2 6d3b65f Chore: Bump step-security/harden-runner from 2.19.4 to 2.20.0 Additional commits viewable in compare view Updates `im-open/workflow-conclusion` from 2.2.5 to 3.0.0 ## Commits 8eac7f1 Merge pull request #29 from im-open/node24 c4d9654 Update to node 24 aa85805 Merge pull request #23 from im-open/dependabot/npm_and_yarn/multi-0f30d60bd3 40cf9b3 Merge branch 'main' into dependabot/npm_and_yarn/multi-0f30d60bd3 58125f7 Bump @octokit/plugin-paginate-rest and @actions/github See full diff in compare view Updates `actions/upload-artifact` from 4 to 7 ## 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 Add proxy integration test by @Link- in actions/upload-artifact#754 Upgrade the module to ESM and bump dependencies by @danwkennedy in actions/upload-artifact#762 Support direct file uploads by @danwkennedy in actions/upload-artifact#764 New Contributors @Link- made their first contribution in actions/upload-artifact#754 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 Upload Artifact Node 24 support by @salmanmkc in actions/upload-artifact#719 fix: update @actions/artifact for Node.js 24 punycode deprecation by @salmanmkc in actions/upload-artifact#744 prepare release v6.0.0 for Node.js 24 support by @salmanmkc in actions/upload-artifact#745 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. Update README.md by @GhadimiR in actions/upload-artifact#681 Update README.md by @nebuk89 in actions/upload-artifact#712 Readme: spell out the first use of GHES by @danwkennedy in actions/upload-artifact#727 Update GHES guidance to include reference to Node 20 version by @patrikpolyak in actions/upload-artifact#725 Bump @actions/artifact to v4.0.0 Prepare v5.0.0 by @danwkennedy in actions/upload-artifact#734 ... (truncated) ## Commits 043fb46 Merge pull request #797 from actions/yacaovsnc/update-dependency 634250c Include changes in typespec/ts-http-runtime 0.3.5 e454baa Readme: bump all the example versions to v7 (#796) 74fad66 Update the readme with direct upload details (#795) 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 Additional commits viewable in compare view Updates `lfreleng-actions/checkout-gerrit-change-action` from 1.0.1 to 1.0.2 ## Release notes Sourced from lfreleng-actions/checkout-gerrit-change-action's releases. v1.0.2 🔧 Maintenance 🔧 Chore: Bump step-security/harden-runner from 2.16.0 to 2.16.1 @dependabot[bot] (#79) Chore: pre-commit autoupdate @pre-commit-ci[bot] (#80) Chore: pre-commit autoupdate @pre-commit-ci[bot] (#81) Chore: Bump release-drafter/release-drafter from 7.1.1 to 7.2.0 @dependabot[bot] (#83) Chore: Bump step-security/harden-runner from 2.16.1 to 2.18.0 @dependabot[bot] (#82) Chore: Bump release-drafter/release-drafter from 7.2.0 to 7.2.1 @dependabot[bot] (#88) Chore: pre-commit autoupdate @pre-commit-ci[bot] (#85) Chore: Bump step-security/harden-runner from 2.18.0 to 2.19.0 @dependabot[bot] (#86) Chore: Bump lfreleng-actions/tag-validate-action from 1.0.1 to 1.0.2 @dependabot[bot] (#87) Chore: pre-commit autoupdate @pre-commit-ci[bot] (#89) Chore: Bump step-security/harden-runner from 2.19.0 to 2.19.1 @dependabot[bot] (#90) Chore: pre-commit autoupdate @pre-commit-ci[bot] (#91) Chore: Bump step-security/harden-runner from 2.19.1 to 2.19.2 @dependabot[bot] (#93) Chore: Bump release-drafter/release-drafter from 7.2.1 to 7.3.0 @dependabot[bot] (#92) Chore: pre-commit autoupdate @pre-commit-ci[bot] (#94) Chore: Bump step-security/harden-runner from 2.19.2 to 2.19.3 @dependabot[bot] (#95) Chore: pre-commit autoupdate @pre-commit-ci[bot] (#96) Chore: Bump step-security/harden-runner from 2.19.3 to 2.19.4 @dependabot[bot] (#97) Chore: Bump release-drafter/release-drafter from 7.3.0 to 7.3.1 @dependabot[bot] (#98) Chore: pre-commit autoupdate @pre-commit-ci[bot] (#99) Chore: Bump actions/checkout from 6.0.2 to 6.0.3 @dependabot[bot] (#100) Chore: remove redundant workflow copies @ModeSevenIndustrialSolutions (#102) Chore: pre-commit autoupdate @pre-commit-ci[bot] (#103) Docs: Add SECURITY.md security policy @ModeSevenIndustrialSolutions (#105) Chore: pre-commit autoupdate @pre-commit-ci[bot] (#106) 🎓 Code Quality 🎓 CI: update tag-push workflow from template @ModeSevenIndustrialSolutions (#84) CI(dependabot): Add 7-day update cooldown @ModeSevenIndustrialSolutions (#104) Links Submit bugs/feature requests ## Commits f87b90a Merge pull request #106 from lfreleng-actions/pre-commit-ci-update-config 3b77a16 Chore: pre-commit autoupdate 719371f Merge pull request #105 from modeseven-lfreleng-actions/chore/add-security-md 43d9e1a Docs: Add SECURITY.md security policy 857d657 Merge pull request #104 from modeseven-lfreleng-actions/dependabot-cooldown b164594 CI(dependabot): Add 7-day update cooldown 9b89664 Merge pull request #103 from lfreleng-actions/pre-commit-ci-update-config 0d8f64d Chore: pre-commit autoupdate 60dc200 Merge pull request #102 from modeseven-lfreleng-actions/chore/remove-redundan 0ecb658 Chore: remove redundant workflow copies Additional commits viewable in compare view Updates `1password/load-secrets-action` from 4.0.0 to 4.0.1 ## Release notes Sourced from 1password/load-secrets-action's releases. v4.0.1 What's Changed Fix Fixed a Windows specific issue where 1Password CLI installation could fail because the downloaded archive lacked a .zip extension required by PowerShell’s archive extraction fallback. (#154) Bump actions/checkout from v5 to v6 in CI workflows. (#156) Security Harden GitHub Actions workflows by pinning external actions to immutable commit SHAs. (#157) Docs Add 1Password API Terms of Service notice to the README (#166) New Contributors @dagecko made their first contribution in 1Password/load-secrets-action#157 @superteppo made their first contribution in 1Password/load-secrets-action#154 @libutcher made their first contribution in 1Password/load-secrets-action#166 Full Changelog: 1Password/load-secrets-action@v4.0.0...v4.0.1 ## Commits 3a12b0a Merge pull request #167 from 1Password/release/v4.0.1 0f0cd1b create new build be2f36b Add Terms of Service to README (#166) 908aabf Merge pull request #154 from superteppo/main cc166c6 Merge pull request #157 from dagecko/runner-guard/fix-ci-security 080cd2d Merge branch '1Password:main' into main 2a321c3 fix: pin 4 unpinned action(s),extract 3 unsafe expression(s) to env vars 2a9101f Merge pull request #156 from 1Password/jill/bump-actions 5b18565 bump actions a763b8d fix installer error on windows See full diff in compare view Updates `lfit/releng-reusable-workflows/.github/workflows/reuse-openssf-scorecard.yaml` from 0.7.2 to 0.7.4 ## Release notes Sourced from lfit/releng-reusable-workflows/.github/workflows/reuse-openssf-scorecard.yaml's releases. v0.7.4 🔧 Maintenance 🔧 Chore: Bump lfit/releng-reusable-workflows/.github/workflows/compose-packer-verify.yaml from 0.7.0 to 0.7.2 @dependabot[bot] (#751) Chore: Bump lfit/releng-reusable-workflows/.github/workflows/reuse-sonatype-lifecycle.yaml from 0.6.1 to 0.7.2 @dependabot[bot] (#753) Chore: Bump lfit/releng-reusable-workflows/.github/workflows/reuse-openssf-scorecard.yaml from 0.7.0 to 0.7.2 @dependabot[bot] (#754) Chore: Bump github/codeql-action/init from 4.36.2 to 4.36.3 @dependabot[bot] (#752) Chore: Bump lfit/releng-reusable-workflows/.github/workflows/reuse-verify-github-actions.yaml from 0.7.0 to 0.7.2 @dependabot[bot] (#755) Chore: Bump dorny/paths-filter from 4.0.1 to 4.0.2 @dependabot[bot] (#756) Chore: Bump lfit/releng-reusable-workflows/.github/workflows/gerrit-compose-required-tox-verify.yaml from 0.7.0 to 0.7.2 @dependabot[bot] (#750) Chore: Bump lfit/releng-reusable-workflows/.github/workflows/compose-repo-linting.yaml from 0.7.0 to 0.7.2 @dependabot[bot] (#757) Chore: Bump docker/build-push-action from 7.2.0 to 7.3.0 @dependabot[bot] (#758) Chore: Bump lfit/releng-reusable-workflows/.github/workflows/compose-jjb-verify.yaml from 0.7.0 to 0.7.2 @dependabot[bot] (#760) Chore: Bump lfreleng-actions/credential-load-action from 1.0.0 to 1.1.0 @dependabot[bot] (#759) Chore: Bump lfreleng-actions/zizmor-scan-action from 0.3.0 to 0.3.1 @dependabot[bot] (#761) Chore: Bump github/codeql-action/upload-sarif from 4.36.2 to 4.36.3 @dependabot[bot] (#762) Chore: pre-commit linting updates @pre-commit-ci[bot] (#765) Chore: Bump jordanconway/package-manager-hardening from 0.4.2 to 0.4.3 @dependabot[bot] (#763) Chore: Bump github/codeql-action/analyze from 4.36.2 to 4.36.3 @dependabot[bot] (#764) Chore: Bump lfit/releng-reusable-workflows/.github/workflows/gerrit-compose-required-tox-verify.yaml from 0.7.2 to 0.7.3 @dependabot[bot] (#769) Chore: Bump github/codeql-action/upload-sarif from 4.36.3 to 4.37.0 @dependabot[bot] (#770) Chore: Bump github/codeql-action/analyze from 4.36.3 to 4.37.0 @dependabot[bot] (#768) Chore: Bump step-security/harden-runner from 2.19.4 to 2.20.0 @dependabot[bot] (#771) Chore: Bump lfreleng-actions/credential-load-action from 1.1.0 to 2.0.0 @dependabot[bot] (#767) Chore: Bump lfit/releng-reusable-workflows/.github/workflows/reuse-openssf-scorecard.yaml from 0.7.2 to 0.7.3 @dependabot[bot] (#772) Chore: Bump lfit/releng-reusable-workflows/.github/workflows/compose-jjb-verify.yaml from 0.7.2 to 0.7.3 @dependabot[bot] (#773) Chore: Bump lfit/releng-reusable-workflows/.github/workflows/reuse-verify-github-actions.yaml from 0.7.2 to 0.7.3 @dependabot[bot] (#775) Chore: Bump lfit/releng-reusable-workflows/.github/workflows/compose-repo-linting.yaml from 0.7.2 to 0.7.3 @dependabot[bot] (#774) Chore: Bump github/codeql-action/init from 4.36.3 to 4.37.0 @dependabot[bot] (#776) Chore: Bump lfit/releng-reusable-workflows/.github/workflows/compose-packer-verify.yaml from 0.7.2 to 0.7.3 @dependabot[bot] (#778) Chore: Bump actions/setup-java from 5.4.0 to 5.5.0 @dependabot[bot] (#777) Chore: Bump lfreleng-actions/zizmor-scan-action from 0.3.1 to 0.4.0 @dependabot[bot] (#779) Chore: Bump lfit/releng-reusable-workflows/.github/workflows/reuse-sonatype-lifecycle.yaml from 0.7.2 to 0.7.3 @dependabot[bot] (#780) Links Submit bugs/feature requests v0.7.3 🔧 Maintenance 🔧 Chore: Bump change-isolation-action to v0.2.0 @ModeSevenIndustrialSolutions (#766) Links Submit bugs/feature requests ## Commits 5fa62e3 Merge pull request #780 from lfit/dependabot/github_actions/lfit/releng-reusa 34d94b1 Merge pull request #779 from lfit/dependabot/github_actions/lfreleng-actions/ 70d4d84 Merge pull request #777 from lfit/dependabot/github_actions/actions/setup-jav 55039c6 Merge pull request #778 from lfit/dependabot/github_actions/lfit/releng-reusa d940c57 Merge pull request #776 from lfit/dependabot/github_actions/github/codeql-act 57c5c52 Merge pull request #774 from lfit/dependabot/github_actions/lfit/releng-reusa a54a16e Merge pull request #775 from lfit/dependabot/github_actions/lfit/releng-reusa 66b4a1c Merge pull request #773 from lfit/dependabot/github_actions/lfit/releng-reusa aa3ba13 Merge pull request #772 from lfit/dependabot/github_actions/lfit/releng-reusa f463514 Merge pull request #767 from lfit/dependabot/github_actions/lfreleng-actions/ Additional commits viewable in compare view Issue-ID: CIMAN-33 Signed-off-by: dependabot[bot] <support@github.com> Change-Id: Id0b478b9c184aa6108f0e2dd6311acb82b036973 GitHub-PR: #40 GitHub-Hash: 8867668c6c265f6c Signed-off-by: onap.gh2gerrit <releng+onap-gh2gerrit@linuxfoundation.org>
vbraun
pushed a commit
to sagemath/sage
that referenced
this pull request
Jul 15, 2026
gh-42492: build(deps): bump actions/upload-artifact from 4 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload- artifact) from 4 to 7. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/upload- artifact/releases">actions/upload-artifact's releases</a>.</em></p> <blockquote> <h2>v7.0.0</h2> <h2>v7 What's new</h2> <h3>Direct Uploads</h3> <p>Adds support for uploading single files directly (unzipped). Callers can set the new <code>archive</code> parameter to <code>false</code> 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 <code>name</code> parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.</p> <h3>ESM</h3> <p>To support new versions of the <code>@actions/*</code> packages, we've upgraded the package to ESM.</p> <h2>What's Changed</h2> <ul> <li>Add proxy integration test by <a href="https://github.com/Link"><code>@Link</code></a>- in <a href="https://redirect.github.com/actions/upload- artifact/pull/754">actions/upload-artifact#754</a></li> <li>Upgrade the module to ESM and bump dependencies by <a href="https://github.com/danwkennedy"><code>@danwkennedy</code></a> in <a href="https://redirect.github.com/actions/upload- artifact/pull/762">actions/upload-artifact#762</a></li> <li>Support direct file uploads by <a href="https://github.com/danwkennedy"><code>@danwkennedy</code></a> in <a href="https://redirect.github.com/actions/upload- artifact/pull/764">actions/upload-artifact#764</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/Link"><code>@Link</code></a>- made their first contribution in <a href="https://redirect.github.com/actions/upload- artifact/pull/754">actions/upload-artifact#754</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/upload- artifact/compare/v6...v7.0.0">https://github.com/actions/upload- artifact/compare/v6...v7.0.0</a></p> <h2>v6.0.0</h2> <h2>v6 - What's new</h2> <blockquote> <p>[!IMPORTANT] actions/upload-artifact@v6 now runs on Node.js 24 (<code>runs.using: node24</code>) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.</p> </blockquote> <h3>Node.js 24</h3> <p>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.</p> <h2>What's Changed</h2> <ul> <li>Upload Artifact Node 24 support by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/upload- artifact/pull/719">actions/upload-artifact#719</a></li> <li>fix: update <code>@actions/artifact</code> for Node.js 24 punycode deprecation by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/upload- artifact/pull/744">actions/upload-artifact#744</a></li> <li>prepare release v6.0.0 for Node.js 24 support by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/upload- artifact/pull/745">actions/upload-artifact#745</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/upload- artifact/compare/v5.0.0...v6.0.0">https://github.com/actions/upload- artifact/compare/v5.0.0...v6.0.0</a></p> <h2>v5.0.0</h2> <h2>What's Changed</h2> <p><strong>BREAKING CHANGE:</strong> this update supports Node <code>v24.x</code>. This is not a breaking change per-se but we're treating it as such.</p> <ul> <li>Update README.md by <a href="https://github.com/GhadimiR"><code>@GhadimiR</code></a> in <a href="https://redirect.github.com/actions/upload- artifact/pull/681">actions/upload-artifact#681</a></li> <li>Update README.md by <a href="https://github.com/nebuk89"><code>@nebuk89</code></a> in <a href="https://redirect.github.com/actions/upload- artifact/pull/712">actions/upload-artifact#712</a></li> <li>Readme: spell out the first use of GHES by <a href="https://github.com/danwkennedy"><code>@danwkennedy</code></a> in <a href="https://redirect.github.com/actions/upload- artifact/pull/727">actions/upload-artifact#727</a></li> <li>Update GHES guidance to include reference to Node 20 version by <a href="https://github.com/patrikpolyak"><code>@patrikpolyak</code></a> in <a href="https://redirect.github.com/actions/upload- artifact/pull/725">actions/upload-artifact#725</a></li> <li>Bump <code>@actions/artifact</code> to <code>v4.0.0</code></li> <li>Prepare <code>v5.0.0</code> by <a href="https://github.com/danwkennedy"><code>@danwkennedy</code></a> in <a href="https://redirect.github.com/actions/upload- artifact/pull/734">actions/upload-artifact#734</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="actions/upload-artifact@043fb46d1 a93c77aae656e7c1c64a875d1fc6a0a"><code>043fb46</code></a> Merge pull request <a href="https://redirect.github.com/actions/upload- artifact/issues/797">#797</a> from actions/yacaovsnc/update- dependency</li> <li><a href="actions/upload-artifact@634250c13 88765ea7ed0f053e636f1f399000b94"><code>634250c</code></a> Include changes in typespec/ts-http-runtime 0.3.5</li> <li><a href="actions/upload-artifact@e454baaac 2be505c9450e11b8f3215c6fc023ce8"><code>e454baa</code></a> Readme: bump all the example versions to v7 (<a href="https://redirect.github.com/actions/upload- artifact/issues/796">#796</a>)</li> <li><a href="actions/upload-artifact@74fad66b9 8a6d799dc004d3353ccd0e6f6b2530e"><code>74fad66</code></a> Update the readme with direct upload details (<a href="https://redirect.github.com/actions/upload- artifact/issues/795">#795</a>)</li> <li><a href="actions/upload-artifact@bbbca2dda a5d8feaa63e36b76fdaad77386f024f"><code>bbbca2d</code></a> Support direct file uploads (<a href="https://redirect.github.com/actions/upload- artifact/issues/764">#764</a>)</li> <li><a href="actions/upload-artifact@589182c5a 4cec8920b8c1bce3e2fab1c97a02296"><code>589182c</code></a> Upgrade the module to ESM and bump dependencies (<a href="https://redirect.github.com/actions/upload- artifact/issues/762">#762</a>)</li> <li><a href="actions/upload-artifact@47309c993 abb98030a35d55ef7ff34b7fa1074b5"><code>47309c9</code></a> Merge pull request <a href="https://redirect.github.com/actions/upload- artifact/issues/754">#754</a> from actions/Link-/add-proxy-integration- tests</li> <li><a href="actions/upload-artifact@02a846083 4e70dab0ce194c64360c59dc1475ef0"><code>02a8460</code></a> Add proxy integration test</li> <li><a href="actions/upload-artifact@b7c566a77 2e6b6bfb58ed0dc250532a479d7789f"><code>b7c566a</code></a> Merge pull request <a href="https://redirect.github.com/actions/upload- artifact/issues/745">#745</a> from actions/upload- artifact-v6-release</li> <li><a href="actions/upload-artifact@e516bc850 0aaf3d07d591fcd4ae6ab5f9c391d5b"><code>e516bc8</code></a> docs: correct description of Node.js 24 support in README</li> <li>Additional commits viewable in <a href="https://github.com/actions/upload- artifact/compare/v4...v7">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing- security-vulnerabilities/about-dependabot-security-updates#about- compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> URL: #42492 Reported by: dependabot[bot] Reviewer(s):
renovate Bot
added a commit
to sdwilsh/sOS
that referenced
this pull request
Jul 20, 2026
##### [\`v7.0.1\`](https://github.com/actions/upload-artifact/releases/tag/v7.0.1) #### What's Changed - Update the readme with direct upload details by [@danwkennedy](https://github.com/danwkennedy) in [#795](actions/upload-artifact#795) - Readme: bump all the example versions to v7 by [@danwkennedy](https://github.com/danwkennedy) in [#796](actions/upload-artifact#796) - Include changes in typespec/ts-http-runtime 0.3.5 by [@yacaovsnc](https://github.com/yacaovsnc) in [#797](actions/upload-artifact#797) **Full Changelog**: <actions/upload-artifact@v7...v7.0.1> --- ##### [\`v7.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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 - Add proxy integration test by [@Link-](https://github.com/Link-) in [#754](actions/upload-artifact#754) - Upgrade the module to ESM and bump dependencies by [@danwkennedy](https://github.com/danwkennedy) in [#762](actions/upload-artifact#762) - Support direct file uploads by [@danwkennedy](https://github.com/danwkennedy) in [#764](actions/upload-artifact#764) #### New Contributors - [@Link-](https://github.com/Link-) made their first contribution in [#754](actions/upload-artifact#754) **Full Changelog**: <actions/upload-artifact@v6...v7.0.0> --- ##### [\`v7\`](actions/upload-artifact@v6.0.0...v7) --- ##### [\`v6.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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 - Upload Artifact Node 24 support by [@salmanmkc](https://github.com/salmanmkc) in [#719](actions/upload-artifact#719) - fix: update [@actions/artifact](https://github.com/actions/artifact) for Node.js 24 punycode deprecation by [@salmanmkc](https://github.com/salmanmkc) in [#744](actions/upload-artifact#744) - prepare release v6.0.0 for Node.js 24 support by [@salmanmkc](https://github.com/salmanmkc) in [#745](actions/upload-artifact#745) **Full Changelog**: <actions/upload-artifact@v5.0.0...v6.0.0> --- ##### [\`v6\`](actions/upload-artifact@v5.0.0...v6.0.0) --- ##### [\`v5.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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. - Update README.md by [@GhadimiR](https://github.com/GhadimiR) in [#681](actions/upload-artifact#681) - Update README.md by [@nebuk89](https://github.com/nebuk89) in [#712](actions/upload-artifact#712) - Readme: spell out the first use of GHES by [@danwkennedy](https://github.com/danwkennedy) in [#727](actions/upload-artifact#727) - Update GHES guidance to include reference to Node 20 version by [@patrikpolyak](https://github.com/patrikpolyak) in [#725](actions/upload-artifact#725) - Bump `@actions/artifact` to `v4.0.0` - Prepare `v5.0.0` by [@danwkennedy](https://github.com/danwkennedy) in [#734](actions/upload-artifact#734) #### New Contributors - [@GhadimiR](https://github.com/GhadimiR) made their first contribution in [#681](actions/upload-artifact#681) - [@nebuk89](https://github.com/nebuk89) made their first contribution in [#712](actions/upload-artifact#712) - [@danwkennedy](https://github.com/danwkennedy) made their first contribution in [#727](actions/upload-artifact#727) - [@patrikpolyak](https://github.com/patrikpolyak) made their first contribution in [#725](actions/upload-artifact#725) **Full Changelog**: <actions/upload-artifact@v4...v5.0.0> --- ##### [\`v5\`](actions/upload-artifact@v4.6.2...v5.0.0)
renovate Bot
added a commit
to sdwilsh/sOS
that referenced
this pull request
Jul 24, 2026
##### [\`v7.0.1\`](https://github.com/actions/upload-artifact/releases/tag/v7.0.1) #### What's Changed - Update the readme with direct upload details by [@danwkennedy](https://github.com/danwkennedy) in [#795](actions/upload-artifact#795) - Readme: bump all the example versions to v7 by [@danwkennedy](https://github.com/danwkennedy) in [#796](actions/upload-artifact#796) - Include changes in typespec/ts-http-runtime 0.3.5 by [@yacaovsnc](https://github.com/yacaovsnc) in [#797](actions/upload-artifact#797) **Full Changelog**: <actions/upload-artifact@v7...v7.0.1> --- ##### [\`v7.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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 - Add proxy integration test by [@Link-](https://github.com/Link-) in [#754](actions/upload-artifact#754) - Upgrade the module to ESM and bump dependencies by [@danwkennedy](https://github.com/danwkennedy) in [#762](actions/upload-artifact#762) - Support direct file uploads by [@danwkennedy](https://github.com/danwkennedy) in [#764](actions/upload-artifact#764) #### New Contributors - [@Link-](https://github.com/Link-) made their first contribution in [#754](actions/upload-artifact#754) **Full Changelog**: <actions/upload-artifact@v6...v7.0.0> --- ##### [\`v7\`](actions/upload-artifact@v6.0.0...v7) --- ##### [\`v6.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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 - Upload Artifact Node 24 support by [@salmanmkc](https://github.com/salmanmkc) in [#719](actions/upload-artifact#719) - fix: update [@actions/artifact](https://github.com/actions/artifact) for Node.js 24 punycode deprecation by [@salmanmkc](https://github.com/salmanmkc) in [#744](actions/upload-artifact#744) - prepare release v6.0.0 for Node.js 24 support by [@salmanmkc](https://github.com/salmanmkc) in [#745](actions/upload-artifact#745) **Full Changelog**: <actions/upload-artifact@v5.0.0...v6.0.0> --- ##### [\`v6\`](actions/upload-artifact@v5.0.0...v6.0.0) --- ##### [\`v5.0.0\`](https://github.com/actions/upload-artifact/releases/tag/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. - Update README.md by [@GhadimiR](https://github.com/GhadimiR) in [#681](actions/upload-artifact#681) - Update README.md by [@nebuk89](https://github.com/nebuk89) in [#712](actions/upload-artifact#712) - Readme: spell out the first use of GHES by [@danwkennedy](https://github.com/danwkennedy) in [#727](actions/upload-artifact#727) - Update GHES guidance to include reference to Node 20 version by [@patrikpolyak](https://github.com/patrikpolyak) in [#725](actions/upload-artifact#725) - Bump `@actions/artifact` to `v4.0.0` - Prepare `v5.0.0` by [@danwkennedy](https://github.com/danwkennedy) in [#734](actions/upload-artifact#734) #### New Contributors - [@GhadimiR](https://github.com/GhadimiR) made their first contribution in [#681](actions/upload-artifact#681) - [@nebuk89](https://github.com/nebuk89) made their first contribution in [#712](actions/upload-artifact#712) - [@danwkennedy](https://github.com/danwkennedy) made their first contribution in [#727](actions/upload-artifact#727) - [@patrikpolyak](https://github.com/patrikpolyak) made their first contribution in [#725](actions/upload-artifact#725) **Full Changelog**: <actions/upload-artifact@v4...v5.0.0> --- ##### [\`v5\`](actions/upload-artifact@v4.6.2...v5.0.0)
This was referenced Jul 29, 2026
centosinfra-prod-github-app Bot
pushed a commit
to ansible-collections/amazon.aws
that referenced
this pull request
Jul 31, 2026
Bumps the github-actions group with 7 updates: Package From To actions/checkout 4.3.1 7.0.1 actions/setup-python 5.6.0 7.0.0 actions/upload-artifact 4.6.2 7.0.1 ansible-community/ansible-test-gh-action 1.17.0 1.18.0 actions/github-script 7.1.0 9.0.0 dawidd6/action-download-artifact 16 21 SonarSource/sonarqube-scan-action 7.0.0 8.2.1 Updates actions/checkout from 4.3.1 to 7.0.1 Release notes Sourced from actions/checkout's releases. v7.0.1 What's Changed skip running unsafe pr check if input is default by @aiqiaoy in actions/checkout#2518 trim only ascii whitespace for branch by @aiqiaoy in actions/checkout#2521 escape values passed to --unset by @aiqiaoy in actions/checkout#2530 Various dependency updates Full Changelog: actions/checkout@v7...v7.0.1 v7.0.0 What's Changed block checking out fork pr for pull_request_target and workflow_run by @aiqiaoy in actions/checkout#2454 Bump actions/publish-immutable-action from 0.0.3 to 0.0.4 in the minor-actions-dependencies group across 1 directory by @dependabot[bot] in actions/checkout#2458 Bump flatted from 3.3.1 to 3.4.2 by @dependabot[bot] in actions/checkout#2460 Bump js-yaml from 4.1.0 to 4.2.0 by @dependabot[bot] in actions/checkout#2461 Bump @actions/core and @actions/tool-cache and Remove uuid by @dependabot[bot] in actions/checkout#2459 upgrade module to esm and update dependencies by @aiqiaoy in actions/checkout#2463 Bump the minor-npm-dependencies group across 1 directory with 3 updates by @dependabot[bot] in actions/checkout#2462 getting ready for checkout v7 release by @aiqiaoy in actions/checkout#2464 update error wording by @aiqiaoy in actions/checkout#2467 New Contributors @aiqiaoy made their first contribution in actions/checkout#2454 Full Changelog: actions/checkout@v6.0.3...v7.0.0 v6.1.0 What's Changed [BREAKING] backport allow-unsafe-pr-checkout to v6 by @aiqiaoy in actions/checkout#2500 backport fixes to releases-v6 by @aiqiaoy in actions/checkout#2527 https://github.blog/changelog/2026-06-18-safer-pull_request_target-defaults-for-github-actions-checkout/ for more details about this breaking change Full Changelog: actions/checkout@v6.0.3...v6.1.0 v6.0.3 What's Changed Update changelog by @ericsciple in actions/checkout#2357 fix: expand merge commit SHA regex and add SHA-256 test cases by @yaananth in actions/checkout#2414 Fix checkout init for SHA-256 repositories by @yaananth in actions/checkout#2439 Update changelog for v6.0.3 by @yaananth in actions/checkout#2446 New Contributors @yaananth made their first contribution in actions/checkout#2414 Full Changelog: actions/checkout@v6...v6.0.3 v6.0.2 What's Changed Add orchestration_id to git user-agent when ACTIONS_ORCHESTRATION_ID is set by @TingluoHuang in actions/checkout#2355 ... (truncated) Changelog Sourced from actions/checkout's changelog. Changelog v7.0.1 Skip running unsafe pr check if input is default by @aiqiaoy in actions/checkout#2518 Trim only ascii whitespace for branch by @aiqiaoy in actions/checkout#2521 Escape values passed to --unset by @aiqiaoy in actions/checkout#2530 Various dependency updates v7.0.0 Block checking out fork PR for pull_request_target and workflow_run by @aiqiaoy in actions/checkout#2454 Various dependency updates v6.0.3 Fix checkout init for SHA-256 repositories by @yaananth in actions/checkout#2439 fix: expand merge commit SHA regex and add SHA-256 test cases by @yaananth in actions/checkout#2414 v6.0.2 Fix tag handling: preserve annotations and explicit fetch-tags by @ericsciple in actions/checkout#2356 v6.0.1 Add worktree support for persist-credentials includeIf by @ericsciple in actions/checkout#2327 v6.0.0 Persist creds to a separate file by @ericsciple in actions/checkout#2286 Update README to include Node.js 24 support details and requirements by @salmanmkc in actions/checkout#2248 v5.0.1 Port v6 cleanup to v5 by @ericsciple in actions/checkout#2301 v5.0.0 Update actions checkout to use node 24 by @salmanmkc in actions/checkout#2226 v4.3.1 Port v6 cleanup to v4 by @ericsciple in actions/checkout#2305 v4.3.0 docs: update README.md by @motss in actions/checkout#1971 Add internal repos for checking out multiple repositories by @mouismail in actions/checkout#1977 Documentation update - add recommended permissions to Readme by @benwells in actions/checkout#2043 Adjust positioning of user email note and permissions heading by @joshmgross in actions/checkout#2044 Update README.md by @nebuk89 in actions/checkout#2194 Update CODEOWNERS for actions by @TingluoHuang in actions/checkout#2224 Update package dependencies by @salmanmkc in actions/checkout#2236 v4.2.2 url-helper.ts now leverages well-known environment variables by @jww3 in actions/checkout#1941 Expand unit test coverage for isGhes by @jww3 in actions/checkout#1946 v4.2.1 Check out other refs/* by commit if provided, fall back to ref by @orhantoy in actions/checkout#1924 ... (truncated) Commits 3d3c42e prep v7.0.1 release (#2531) 2880268 escape values passed to --unset (#2530) 12cd223 trim only ascii whitespace for branch (#2521) 62661c4 skip running unsafe pr check if input is default (#2518) e8d4307 Bump the minor-actions-dependencies group with 2 updates (#2499) 631c942 eslint 9 (#2474) 4f1f4ae Bump actions/upload-artifact from 4 to 7 (#2476) ba09753 Bump actions/checkout from 6 to 7 (#2488) b9e0990 Bump docker/login-action from 3.3.0 to 4.2.0 (#2479) e8cb398 Bump docker/build-push-action from 6.5.0 to 7.2.0 (#2478) Additional commits viewable in compare view Updates actions/setup-python from 5.6.0 to 7.0.0 Release notes Sourced from actions/setup-python's releases. v7.0.0 What's Changed Enhancements Migrate to ESM and upgrade dependencies by @priyagupta108 in actions/setup-python#1330 Pin SHA commits and update docs with latest versions by @HarithaVattikuti in actions/setup-python#1338 Remove the pip-install input by @gowridurgad in actions/setup-python#1336 Bug Fix Fix to Classify stderr warning messages as warnings instead of errors in annotations by @lmvysakh in actions/setup-python#1335 Validate and retry manifest fetch to prevent silent failures by @priyagupta108 in actions/setup-python#1332 Dependency Upgrade Bump certifi from 2020.6.20 to 2024.7.4 in /tests/data by @dependabot in actions/setup-python#1328 Remove EOL Python versions and Bumps numpy text fixture by @priya-kinthali in actions/setup-python#1333 Upgrade @actions/cache to 6.2.0 by @philip-gai in actions/setup-python#1337 New Contributors @lmvysakh made their first contribution in actions/setup-python#1335 @philip-gai made their first contribution in actions/setup-python#1337 Full Changelog: actions/setup-python@v6...v7.0.0 v6.3.0 What's Changed Enhancement Add RHEL support and include Linux distro in cache keys by @priyagupta108 in actions/setup-python#1323 Fix pip cache error handling on Windows by @priyagupta108 in actions/setup-python#1040 Dependency update Upgrade minimatch from 3.1.2 to 3.1.5 by @dependabot in actions/setup-python#1281 Upgrade actions dependencies by @gowridurgad with @Copilot in actions/setup-python#1303 Upgrade @actions/cache to 5.1.0, log cache write denied by @jasongin in actions/setup-python#1324 Upgrade dependency versions and test workflow configuration by @HarithaVattikuti in actions/setup-python#1322 Documentation Update advanced-usage.md by @Dunky-Z in actions/setup-python#811 New Contributors @gowridurgad with @Copilot made their first contribution in actions/setup-python#1303 @jasongin made their first contribution in actions/setup-python#1324 @Dunky-Z made their first contribution in actions/setup-python#811 Full Changelog: actions/setup-python@v6.2.0...v6.3.0 v6.2.0 What's Changed Dependency Upgrades Upgrade dependencies to Node 24 compatible versions by @salmanmkc in actions/setup-python#1259 ... (truncated) Commits 5fda3b9 Pin SHA commits and update docs with latest versions (#1338) 4ab7e95 Merge pull request #1337 from actions/philip-gai/bump-actions-cache-6-2-0 0f3a009 Remove the pip-install input (#1336) f8cf429 Migrate to ESM and upgrade dependencies (#1330) 54baeea Validate and retry manifest fetch to prevent silent failures (#1332) c709277 Annotation code fix (#1335) 6849080 remove EOL Python versions and Bumps numpy text fixture (#1333) 0903b46 Bump certifi from 2020.6.20 to 2024.7.4 in /tests/data (#1328) ece7cb0 Fix pip cache error handling on Windows. (#1040) 1d18d7a Update advanced-usage.md (#811) Additional commits viewable in compare view Updates actions/upload-artifact from 4.6.2 to 7.0.1 Release notes Sourced from actions/upload-artifact's releases. v7.0.1 What's Changed Update the readme with direct upload details by @danwkennedy in actions/upload-artifact#795 Readme: bump all the example versions to v7 by @danwkennedy in actions/upload-artifact#796 Include changes in typespec/ts-http-runtime 0.3.5 by @yacaovsnc in actions/upload-artifact#797 Full Changelog: actions/upload-artifact@v7...v7.0.1 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 Add proxy integration test by @Link- in actions/upload-artifact#754 Upgrade the module to ESM and bump dependencies by @danwkennedy in actions/upload-artifact#762 Support direct file uploads by @danwkennedy in actions/upload-artifact#764 New Contributors @Link- made their first contribution in actions/upload-artifact#754 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 Upload Artifact Node 24 support by @salmanmkc in actions/upload-artifact#719 fix: update @actions/artifact for Node.js 24 punycode deprecation by @salmanmkc in actions/upload-artifact#744 prepare release v6.0.0 for Node.js 24 support by @salmanmkc in actions/upload-artifact#745 Full Changelog: actions/upload-artifact@v5.0.0...v6.0.0 v5.0.0 What's Changed ... (truncated) Commits 043fb46 Merge pull request #797 from actions/yacaovsnc/update-dependency 634250c Include changes in typespec/ts-http-runtime 0.3.5 e454baa Readme: bump all the example versions to v7 (#796) 74fad66 Update the readme with direct upload details (#795) 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 Additional commits viewable in compare view Updates ansible-community/ansible-test-gh-action from 1.17.0 to 1.18.0 Release notes Sourced from ansible-community/ansible-test-gh-action's releases. v1.18.0 What's Changed Project Changes Support ansible-core 2.20 and 2.21, bump default ansible-core version to 2.21 by @felixfontein in ansible-community/ansible-test-gh-action#125 Dependencies Bump codecov/codecov-action from 4.5.0 to 5.4.3 by @dependabot[bot] in ansible-community/ansible-test-gh-action#101 Bump actions/checkout from 4 to 5 by @dependabot[bot] in ansible-community/ansible-test-gh-action#104 Bump codecov/codecov-action from 5.4.3 to 5.5.0 by @dependabot[bot] in ansible-community/ansible-test-gh-action#105 Bump codecov/codecov-action from 5.5.0 to 5.5.1 by @dependabot[bot] in ansible-community/ansible-test-gh-action#107 Bump actions/setup-python from 5 to 6 by @dependabot[bot] in ansible-community/ansible-test-gh-action#108 Bump actions/checkout from 5 to 6 by @dependabot[bot] in ansible-community/ansible-test-gh-action#110 Bump codecov/codecov-action from 5.5.1 to 5.5.2 by @dependabot[bot] in ansible-community/ansible-test-gh-action#111 Bump codecov/codecov-action from 5.5.2 to 5.5.3 by @dependabot[bot] in ansible-community/ansible-test-gh-action#114 Bump codecov/codecov-action from 5.5.3 to 6.0.0 by @dependabot[bot] in ansible-community/ansible-test-gh-action#115 Bump codecov/codecov-action from 6.0.0 to 6.0.1 by @dependabot[bot] in ansible-community/ansible-test-gh-action#119 Bump codecov/codecov-action from 6.0.1 to 7.0.0 by @dependabot[bot] in ansible-community/ansible-test-gh-action#122 Bump actions/checkout from 6 to 7 by @dependabot[bot] in ansible-community/ansible-test-gh-action#126 Full Changelog: ansible-community/ansible-test-gh-action@v1.17.0...v1.18.0 Commits 6ded727 Merge pull request #126 from ansible-community/dependabot/github_actions/acti... e0d4c98 Bump actions/checkout from 6 to 7 6c86f3f Merge pull request #125 from felixfontein/ansible-core 48b041f Merge pull request #122 from ansible-community/dependabot/github_actions/code... 3272591 Merge pull request #124 from felixfontein/fix-pre-commit c0626df Bump default ansible-core to 2.21 7dfd27a Support ansible-core 2.20 and 2.21 c8e46ea Bump pre-commit flake8 additional deps 13e4993 Bump codecov/codecov-action from 6.0.1 to 7.0.0 8b1ac34 Merge pull request #119 from ansible-community/dependabot/github_actions/code... Additional commits viewable in compare view Updates actions/github-script from 7.1.0 to 9.0.0 Release notes Sourced from actions/github-script's releases. v9.0.0 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 Add ACTIONS_ORCHESTRATION_ID to user-agent string by @Copilot in actions/github-script#695 ci: use deployment: false for integration test environments by @salmanmkc in actions/github-script#712 feat!: add getOctokit to script context, upgrade @actions/github v9, @octokit/core v7, and related packages by @salmanmkc in actions/github-script#700 New Contributors @Copilot made their first contribution in actions/github-script#695 Full Changelog: actions/github-script@v8.0.0...v9.0.0 v8.0.0 What's Changed Update Node.js version support to 24.x by @salmanmkc in actions/github-script#637 README for updating actions/github-script from v7 to v8 by @sneha-krip in actions/github-script#653⚠️ Minimum Compatible Runner Version v2.327.1 Release Notes Make sure your runner is updated to this version or newer to use this release. New Contributors @salmanmkc made their first contribution in actions/github-script#637 @sneha-krip made their first contribution in actions/github-script#653 Full Changelog: actions/github-script@v7.1.0...v8.0.0 Commits 3a2844b Merge pull request #700 from actions/salmanmkc/expose-getoctokit + prepare re... ca10bbd fix: use @octokit/core/types import for v7 compatibility 86e48e2 merge: incorporate main branch changes c108472 chore: rebuild dist for v9 upgrade and getOctokit factory afff112 Merge pull request #712 from actions/salmanmkc/deployment-false + fix user-ag... ff8117e ci: fix user-agent test to handle orchestration ID 81c6b78 ci: use deployment: false to suppress deployment noise from integration tests 3953caf docs: update README examples from @v8 to @v9, add getOctokit docs and v9 brea... c17d55b ci: add getOctokit integration test job a047196 test: add getOctokit integration tests via callAsyncFunction Additional commits viewable in compare view Updates dawidd6/action-download-artifact from 16 to 21 Release notes Sourced from dawidd6/action-download-artifact's releases. v21 What's Changed build(deps): bump @actions/github from 9.0.0 to 9.1.0 by @dependabot[bot] in dawidd6/action-download-artifact#396 build(deps): bump filesize from 11.0.15 to 11.0.16 by @dependabot[bot] in dawidd6/action-download-artifact#399 build(deps): bump fast-xml-parser from 5.5.7 to 5.7.1 by @dependabot[bot] in dawidd6/action-download-artifact#402 build(deps): bump @actions/github from 9.1.0 to 9.1.1 by @dependabot[bot] in dawidd6/action-download-artifact#400 build(deps): bump @actions/core from 3.0.0 to 3.0.1 by @dependabot[bot] in dawidd6/action-download-artifact#401 build(deps): bump filesize from 11.0.16 to 11.0.17 by @dependabot[bot] in dawidd6/action-download-artifact#404 Download artifacts in creation order by @matejdro in dawidd6/action-download-artifact#398 node_modules: update by @dawidd6 in dawidd6/action-download-artifact#405 New Contributors @matejdro made their first contribution in dawidd6/action-download-artifact#398 Full Changelog: dawidd6/action-download-artifact@v20...v21 v20 What's Changed build(deps): bump fast-xml-parser from 5.5.6 to 5.5.7 by @dependabot[bot] in dawidd6/action-download-artifact#387 node_modules: update by @dawidd6 in dawidd6/action-download-artifact#388 build(deps): bump filesize from 11.0.13 to 11.0.14 by @dependabot[bot] in dawidd6/action-download-artifact#389 build(deps): bump brace-expansion by @dependabot[bot] in dawidd6/action-download-artifact#390 node_modules: update by @dawidd6 in dawidd6/action-download-artifact#391 build(deps): bump filesize from 11.0.14 to 11.0.15 by @dependabot[bot] in dawidd6/action-download-artifact#392 build(deps): bump adm-zip from 0.5.16 to 0.5.17 by @dependabot[bot] in dawidd6/action-download-artifact#393 build(deps): bump lodash from 4.17.23 to 4.18.1 by @dependabot[bot] in dawidd6/action-download-artifact#394 node_modules: update by @dawidd6 in dawidd6/action-download-artifact#395 Full Changelog: dawidd6/action-download-artifact@v19...v20 v19 What's Changed build(deps): bump fast-xml-parser from 5.4.1 to 5.5.6 by @dependabot[bot] in dawidd6/action-download-artifact#385 node_modules: update by @dawidd6 in dawidd6/action-download-artifact#386 Full Changelog: dawidd6/action-download-artifact@v18...v19 v18 What's Changed build(deps): bump @actions/artifact from 6.2.0 to 6.2.1 by @dependabot[bot] in dawidd6/action-download-artifact#381 build(deps): bump undici from 6.23.0 to 6.24.0 by @dependabot[bot] in dawidd6/action-download-artifact#382 node_modules: update by @dawidd6 in dawidd6/action-download-artifact#383 Full Changelog: dawidd6/action-download-artifact@v17...v18 v17 What's Changed ... (truncated) Commits b6e2e70 node_modules: update (#405) 1708cb3 Download artifacts in creation order (#398) 00b585a build(deps): bump filesize from 11.0.16 to 11.0.17 (#404) 0414c42 build(deps): bump @actions/core from 3.0.0 to 3.0.1 (#401) c802aad build(deps): bump @actions/github from 9.1.0 to 9.1.1 (#400) ef06691 build(deps): bump fast-xml-parser from 5.5.7 to 5.7.1 (#402) 026702e build(deps): bump filesize from 11.0.15 to 11.0.16 (#399) 09d0677 build(deps): bump @actions/github from 9.0.0 to 9.1.0 (#396) 8305c0f node_modules: update (#395) 542af03 build(deps): bump lodash from 4.17.23 to 4.18.1 (#394) Additional commits viewable in compare view Updates SonarSource/sonarqube-scan-action from 7.0.0 to 8.2.1 Release notes Sourced from SonarSource/sonarqube-scan-action's releases. v8.2.1 What's Changed Bug fix SQSCANGHA-156 GPG signature verification fails when temporary directory path is too long Full Changelog: SonarSource/sonarqube-scan-action@v8.2.0...v8.2.1 v8.2.0 What's Changed SQSCANGHA-149 Add scannerBinariesAuthHeader input by @henryju in SonarSource/sonarqube-scan-action#246 SQSCANGHA-88 Deprecate the SONARCLOUD_URL env variable support by @henryju in SonarSource/sonarqube-scan-action#249 SQSCANGHA-84 Remove outdated wget/curl references by @henryju in SonarSource/sonarqube-scan-action#248 SQSCANGHA-135 Fix scanner binaries always re-downloaded due to incompatible 4-part version by @henryju in SonarSource/sonarqube-scan-action#250 SQSCANGHA-127 Rename downloaded file to .zip before extraction on Windows by @henryju in SonarSource/sonarqube-scan-action#251 Full Changelog: SonarSource/sonarqube-scan-action@v8...v8.2.0 v8.1.0 What's Changed SQSCANGHA-146 Add proxy support for GPG keyserver access by @henryju in SonarSource/sonarqube-scan-action#244 SQSCANGHA-148 Update SonarScanner CLI to 8.1.0.6389 by @github-actions[bot] in SonarSource/sonarqube-scan-action#232 Full Changelog: SonarSource/sonarqube-scan-action@v8...v8.1.0 v8.0.0 What's Changed Breaking change SQSCANGHA-145 Set skipSignatureVerification default value to false by @antoine-vinot-sonarsource in SonarSource/sonarqube-scan-action#241 Full Changelog: SonarSource/sonarqube-scan-action@v7...v8.0.0 v7.2.1 What's Changed SQSCANGHA-140 Set skipSignatureVerification default value to true to avoid breaking change by @gmmcal in SonarSource/sonarqube-scan-action#240 Full Changelog: SonarSource/sonarqube-scan-action@v7...v7.2.1 v7.2.0 What's Changed SQSCANGHA-133 Upgrade the Node version used in UTs + contribution guide by @claire-villard-sonarsource in SonarSource/sonarqube-scan-action#226 SC-45750 Migrate to dateless license headers by @claire-villard-sonarsource in SonarSource/sonarqube-scan-action#229 SQSCANGHA-134 Upgrade the libraries to latest version by @claire-villard-sonarsource in SonarSource/sonarqube-scan-action#227 ... (truncated) Commits 2291811 SQSCANGHA-156 GPG signature verification fails when temporary directory path ... 7cdc154 SQSCANGHA-153 NO-JIRA Bump actions/checkout from 6.0.2 to 7.0.0 (#255) 45f2736 SQSCANGHA-151 Change Code Owners (#254) 7138816 SQSCANGHA-127 Rename downloaded file to .zip before extraction on Windows (#251) 3581139 SQSCANGHA-135 Fix scanner binaries always re-downloaded due to incompatible 4... c9d327c SQSCANGHA-84 Remove outdated wget/curl references b243e51 SQSCANGHA-88 Deprecate the SONARCLOUD_URL env variable support 375c3f5 SQSCANGHA-149 Add scannerBinariesAuthHeader input for authenticated binary do... 9c78323 SQSCANGHA-144 Add gate jobs to QA workflows for branch protection 7006c44 Update SonarScanner CLI to 8.1.0.6389 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 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 con... Description has been truncated Reviewed-by: Mark Chappell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Proxy Integration Test for upload-artifact
This test validates that the
upload-artifactaction properly honorshttp_proxyandhttps_proxyenvironment variables.How it works
iptablesto block all direct HTTP/HTTPS traffic (ports 80/443), allowing only traffic through the proxyKey point
If the action ignores the proxy configuration and attempts direct connections, the upload will fail due to iptables blocking. Success indicates the action correctly routes traffic through the configured proxy.