Skip to content

Update github-actions (major)#11128

Open
renovate[bot] wants to merge 1 commit into2.2.xfrom
renovate/major-github-actions
Open

Update github-actions (major)#11128
renovate[bot] wants to merge 1 commit into2.2.xfrom
renovate/major-github-actions

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Jun 3, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
Eomm/why-don-t-you-tweet action major v1.1.0v2.0.0
actions/checkout action major v4.3.1v6.0.2
actions/download-artifact action major v4.3.0v8.0.1
actions/setup-node action major v4.4.0v6.3.0
actions/upload-artifact action major v4.6.2v7.0.0
crazy-max/ghaction-import-gpg action major v6.3.0v7.0.0
dessant/lock-threads action major v5.0.1v6.0.0
docker/build-push-action action major v5.4.0v7.0.0
docker/login-action action major v3.7.0v4.0.0
docker/setup-buildx-action action major v3.12.0v4.0.0
docker/setup-qemu-action action major v3.7.0v4.0.0
getsentry/action-release action major v1.11.0v3.5.0
node uses-with major 1824
node uses-with major 2024
peter-evans/create-pull-request action major v7.0.11v8.1.0
peter-evans/create-pull-request action major v6.1.0v8.1.0
peter-evans/repository-dispatch action major v3.0.0v4.0.1
stefanzweifel/git-auto-commit-action action major v5.2.0v7.1.0

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

Eomm/why-don-t-you-tweet (Eomm/why-don-t-you-tweet)

v2.0.0

Compare Source

What's Changed

Full Changelog: Eomm/why-don-t-you-tweet@v1.1.0...v2.0.0

actions/checkout (actions/checkout)

v6.0.2

Compare Source

v6.0.1

Compare Source

v6.0.0

Compare Source

v5.0.1

Compare Source

What's Changed

Full Changelog: actions/checkout@v5...v5.0.1

v5.0.0

Compare Source

What's Changed
⚠️ Minimum Compatible Runner Version

v2.327.1
Release Notes

Make sure your runner is updated to this version or newer to use this release.

Full Changelog: actions/checkout@v4...v5.0.0

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

v8.0.1

Compare Source

What's Changed

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

v8.0.0

Compare Source

v8 - What's new
Direct downloads

To support direct uploads in actions/upload-artifact, the action will no longer attempt to unzip all downloaded files. Instead, the action checks the Content-Type header ahead of unzipping and skips non-zipped files. Callers wishing to download a zipped file as-is can also set the new skip-decompress parameter to false.

Enforced checks (breaking)

A previous release introduced digest checks on the download. If a download hash didn't match the expected hash from the server, the action would log a warning. Callers can now configure the behavior on mismatch with the digest-mismatch parameter. To be secure by default, we are now defaulting the behavior to error which will fail the workflow run.

ESM

To support new versions of the @​actions/* packages, we've upgraded the package to ESM.

What's Changed

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

v7.0.0

Compare Source

v7 - What's new

[!IMPORTANT]
actions/download-artifact@​v7 now runs on Node.js 24 (runs.using: node24) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.

Node.js 24

This release updates the runtime to Node.js 24. v6 had preliminary support for Node 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24.

What's Changed
New Contributors

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

v6.0.0

Compare Source

What's Changed

BREAKING CHANGE: this update supports Node v24.x. This is not a breaking change per-se but we're treating it as such.

New Contributors

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

v5.0.0

Compare Source

What's Changed

v5.0.0

🚨 Breaking Change

This release fixes an inconsistency in path behavior for single artifact downloads by ID. If you're downloading single artifacts by ID, the output path may change.

What Changed

Previously, single artifact downloads behaved differently depending on how you specified the artifact:

  • By name: name: my-artifact → extracted to path/ (direct)
  • By ID: artifact-ids: 12345 → extracted to path/my-artifact/ (nested)

Now both methods are consistent:

  • By name: name: my-artifact → extracted to path/ (unchanged)
  • By ID: artifact-ids: 12345 → extracted to path/ (fixed - now direct)
Migration Guide
✅ No Action Needed If:
  • You download artifacts by name
  • You download multiple artifacts by ID
  • You already use merge-multiple: true as a workaround
⚠️ Action Required If:

You download single artifacts by ID and your workflows expect the nested directory structure.

Before v5 (nested structure):

- uses: actions/download-artifact@v4
  with:
    artifact-ids: 12345
    path: dist

### Files were in: dist/my-artifact/

Where my-artifact is the name of the artifact you previously uploaded

To maintain old behavior (if needed):

- uses: actions/download-artifact@v5
  with:
    artifact-ids: 12345
    path: dist/my-artifact  # Explicitly specify the nested path

New Contributors

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

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

v6.3.0

Compare Source

What's Changed

Enhancements:

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

Dependency updates:
Bug fixes:

New Contributors

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

v6.2.0

Compare Source

v6.1.0

Compare Source

What's Changed

Enhancement:
Dependency updates:
Documentation update:

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

v6.0.0

Compare Source

What's Changed

Breaking Changes

Dependency Upgrades

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

v5.0.0

Compare Source

What's Changed
Breaking Changes

This update, introduces automatic caching when a valid packageManager field is present in your package.json. This aims to improve workflow performance and make dependency management more seamless.
To disable this automatic caching, set package-manager-cache: false

steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
  with:
    package-manager-cache: false

Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes

Dependency Upgrades
New Contributors

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

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

v7.0.0

Compare Source

v7 What's new

Direct Uploads

Adds support for uploading single files directly (unzipped). Callers can set the new archive parameter to false to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The name parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.

ESM

To support new versions of the @actions/* packages, we've upgraded the package to ESM.

What's Changed

New Contributors

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

v6.0.0

Compare Source

v5.0.0

Compare Source

crazy-max/ghaction-import-gpg (crazy-max/ghaction-import-gpg)

v7.0.0

Compare Source

Full Changelog: crazy-max/ghaction-import-gpg@v6.3.0...v7.0.0

dessant/lock-threads (dessant/lock-threads)

v6.0.0

Compare Source

Learn more about this release from the changelog.

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

v7.0.0

Compare Source

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

v6.19.2

Compare Source

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

v6.19.1

Compare Source

Full Changelog: docker/build-push-action@v6.19.0...v6.19.1

v6.19.0

Compare Source

  • Scope default git auth token to github.com by @​crazy-max in #​1451
  • Bump brace-expansion from 1.1.11 to 1.1.12 in #​1396
  • Bump form-data from 2.5.1 to 2.5.5 in #​1391
  • Bump js-yaml from 3.14.1 to 3.14.2 in #​1429
  • Bump lodash from 4.17.21 to 4.17.23 in #​1446
  • Bump tmp from 0.2.3 to 0.2.4 in #​1398
  • Bump undici from 5.28.4 to 5.29.0 in #​1397

Full Changelog: docker/build-push-action@v6.18.0...v6.19.0

v6.18.0

Compare Source

[!NOTE]
Build summary is now supported with Docker Build Cloud.

Full Changelog: docker/build-push-action@v6.17.0...v6.18.0

v6.17.0

Compare Source

[!NOTE]
Build record is now exported using the buildx history export command instead of the legacy export-build tool.

Full Changelog: docker/build-push-action@v6.16.0...v6.17.0

v6.16.0

Compare Source

Full Changelog: docker/build-push-action@v6.15.0...v6.16.0

v6.15.0

Compare Source

Full Changelog: docker/build-push-action@v6.14.0...v6.15.0

v6.14.0

Compare Source

Full Changelog: docker/build-push-action@v6.13.0...v6.14.0

v6.13.0

Compare Source

Full Changelog: docker/build-push-action@v6.12.0...v6.13.0

v6.12.0

Compare Source

Full Changelog: docker/build-push-action@v6.11.0...v6.12.0

v6.11.0

Compare Source

Full Changelog: docker/build-push-action@v6.10.0...v6.11.0

v6.10.0

Compare Source

Full Changelog: docker/build-push-action@v6.9.0...v6.10.0

v6.9.0

Compare Source

Full Changelog: docker/build-push-action@v6.8.0...v6.9.0

v6.8.0

Compare Source

Full Changelog: docker/build-push-action@v6.7.0...v6.8.0

v6.7.0

Compare Source

Full Changelog: docker/build-push-action@v6.6.1...v6.7.0

v6.6.1

Compare Source

Full Changelog: docker/build-push-action@v6.6.0...v6.6.1

v6.6.0

Compare Source

Full Changelog: docker/build-push-action@v6.5.0...v6.6.0

v6.5.0

Compare Source

Full Changelog: docker/build-push-action@v6.4.1...v6.5.0

v6.4.1

Compare Source

Full Changelog: docker/build-push-action@v6.4.0...v6.4.1

v6.4.0

Compare Source

Full Changelog: docker/build-push-action@v6.3.0...v6.4.0

v6.3.0

Compare Source

Full Changelog: docker/build-push-action@v6.2.0...v6.3.0

v6.2.0

Compare Source

Full Changelog: docker/build-push-action@v6.1.0...v6.2.0

v6.1.0

Compare Source

Full Changelog: docker/build-push-action@v6.0.2...v6.1.0

v6.0.2

Compare Source

Full Changelog: docker/build-push-action@v6.0.1...v6.0.2

v6.0.1

Compare Source

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

v6.0.0

Compare Source

[!NOTE]
This major release adds support for generating Build summary and exporting build record for your build. You can disable this feature by setting DOCKER_BUILD_SUMMARY: false environment variable in your workflow.

Full Changelog: docker/build-push-action@v5.4.0...v6.0.0

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

v4.0.0

Compare Source

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

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

v4.0.0

Compare Source

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

docker/setup-qemu-action (docker/setup-qemu-action)

v4.0.0

Compare Source

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

getsentry/action-release (getsentry/action-release)

v3.5.0: 3.5.0

Compare Source

New Features ✨
Deps
Build / dependencies / internal 🔧

v3.4.0: 3.4.0

Compare Source

  • feat: Add supp

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

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

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

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


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

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

@renovate renovate bot force-pushed the renovate/major-github-actions branch from cc36a85 to 7f95fc1 Compare June 17, 2024 09:59
@renovate renovate bot changed the title Update Eomm/why-don-t-you-tweet action to v2 Update github-actions (major) Jun 17, 2024
@renovate renovate bot force-pushed the renovate/major-github-actions branch from 7f95fc1 to dd71748 Compare July 6, 2024 18:40
@renovate renovate bot changed the base branch from 1.11.x to 1.12.x July 6, 2024 18:40
@renovate renovate bot changed the title Update github-actions (major) chore(deps): update github-actions (major) Jul 29, 2024
@renovate renovate bot changed the title chore(deps): update github-actions (major) Update github-actions (major) Aug 3, 2024
@renovate renovate bot force-pushed the renovate/major-github-actions branch 2 times, most recently from 2cb09b3 to 3179bfd Compare September 4, 2024 14:20
@renovate renovate bot changed the base branch from 1.12.x to 2.0.x September 4, 2024 14:20
@renovate renovate bot force-pushed the renovate/major-github-actions branch from 3179bfd to 294e6ba Compare October 15, 2024 12:50
@renovate renovate bot force-pushed the renovate/major-github-actions branch from 294e6ba to 7a1c746 Compare December 2, 2024 10:06
@renovate renovate bot changed the title Update github-actions (major) chore(deps): update github-actions (major) Dec 3, 2024
@renovate renovate bot changed the title chore(deps): update github-actions (major) Update github-actions (major) Dec 12, 2024
@renovate renovate bot changed the title Update github-actions (major) chore(deps): update github-actions (major) Dec 20, 2024
@renovate renovate bot force-pushed the renovate/major-github-actions branch from 7a1c746 to f8999f8 Compare December 21, 2024 15:41
@renovate renovate bot changed the base branch from 2.0.x to 2.1.x December 21, 2024 15:41
@renovate renovate bot changed the title chore(deps): update github-actions (major) Update github-actions (major) Jan 4, 2025
@renovate renovate bot force-pushed the renovate/major-github-actions branch from f8999f8 to 2b50b29 Compare February 11, 2025 15:58
@renovate renovate bot changed the title Update github-actions (major) chore(deps): update github-actions (major) Feb 12, 2025
@renovate renovate bot force-pushed the renovate/major-github-actions branch from 2b50b29 to 6357e3f Compare March 3, 2025 11:57
@renovate renovate bot changed the title chore(deps): update github-actions (major) Update github-actions (major) Mar 8, 2025
@renovate renovate bot force-pushed the renovate/major-github-actions branch from 6357e3f to 1ff8067 Compare March 11, 2025 16:15
@renovate renovate bot changed the title Update github-actions (major) chore(deps): update github-actions (major) May 5, 2025
@renovate renovate bot force-pushed the renovate/major-github-actions branch from 1ff8067 to ee9dedd Compare May 14, 2025 12:52
@renovate renovate bot changed the title chore(deps): update github-actions (major) Update github-actions (major) May 16, 2025
@renovate renovate bot force-pushed the renovate/major-github-actions branch from ee9dedd to 560952e Compare June 10, 2025 22:16
@renovate renovate bot force-pushed the renovate/major-github-actions branch 2 times, most recently from a2f770a to ba2d957 Compare August 1, 2025 04:50
@renovate renovate bot force-pushed the renovate/major-github-actions branch 2 times, most recently from 2250491 to 7cce0cc Compare August 10, 2025 15:01
@renovate renovate bot force-pushed the renovate/major-github-actions branch 4 times, most recently from 09e13dd to 99c3d6f Compare September 25, 2025 14:55
@renovate renovate bot force-pushed the renovate/major-github-actions branch from 99c3d6f to bffce32 Compare October 1, 2025 21:02
@renovate renovate bot force-pushed the renovate/major-github-actions branch 3 times, most recently from a0590d7 to eadf902 Compare October 14, 2025 05:33
@renovate renovate bot force-pushed the renovate/major-github-actions branch 3 times, most recently from 2b9553e to 7db5ccb Compare October 28, 2025 00:46
@renovate renovate bot force-pushed the renovate/major-github-actions branch from 7db5ccb to 53e35fc Compare October 29, 2025 04:13
@renovate renovate bot force-pushed the renovate/major-github-actions branch 2 times, most recently from 7b3ad89 to 767e980 Compare November 12, 2025 01:40
@renovate renovate bot force-pushed the renovate/major-github-actions branch from 767e980 to c9f9399 Compare November 20, 2025 17:08
@renovate renovate bot force-pushed the renovate/major-github-actions branch 5 times, most recently from 92c84cb to 9ae62c3 Compare December 15, 2025 17:13
@renovate renovate bot force-pushed the renovate/major-github-actions branch from 9ae62c3 to 11cbe13 Compare December 31, 2025 16:07
@renovate renovate bot force-pushed the renovate/major-github-actions branch from 11cbe13 to 58cb8af Compare January 14, 2026 05:56
@renovate renovate bot force-pushed the renovate/major-github-actions branch 3 times, most recently from 5c87d24 to 0a3feef Compare February 3, 2026 12:54
@renovate renovate bot force-pushed the renovate/major-github-actions branch from 0a3feef to cfecf36 Compare February 3, 2026 13:51
@renovate renovate bot changed the title Update github-actions (major) chore(deps): update github-actions (major) Feb 9, 2026
@renovate renovate bot changed the title chore(deps): update github-actions (major) Update github-actions (major) Feb 10, 2026
@renovate renovate bot changed the base branch from 2.1.x to 2.2.x February 13, 2026 12:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants