Skip to content

Update GH Actions#1

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/gh-actions
Open

Update GH Actions#1
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/gh-actions

Conversation

@renovate

@renovate renovate Bot commented Dec 25, 2024

Copy link
Copy Markdown

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
actions/cache action major v4v5
actions/checkout action major v4v6
actions/download-artifact action major v4v8
actions/upload-artifact action major v4v7
aws-actions/configure-aws-credentials action major v4v6
cachix/cachix-action action major v15v17
cachix/install-nix-action action major v27v31
cygwin/cygwin-install-action action major v4v6
ilammy/setup-nasm action patch v1.5.1v1.5.2
msys2/setup-msys2 action minor v2.24.1v2.32.0
mwilliamson/setup-wasmtime-action action major v2v3
ubuntu github-runner major 22.0424.04
windows github-runner major 20222025

Release Notes

actions/cache (actions/cache)

v5.0.5

Compare Source

What's Changed

Full Changelog: actions/cache@v5...v5.0.5

v5.0.4

Compare Source

v5.0.3

Compare Source

What's Changed

Full Changelog: actions/cache@v5...v5.0.3

v5.0.2

Compare Source

v5.0.1

Compare Source

v5.0.0

Compare Source

v5

Compare Source

actions/checkout (actions/checkout)

v6.0.3

Compare Source

v6.0.2

Compare Source

v6.0.1

Compare Source

v6.0.0

Compare Source

v6

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

v5

Compare Source

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

v8

Compare Source

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

v7

Compare Source

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

v6

Compare Source

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

v5

Compare Source

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

v7.0.1

Compare Source

What's Changed

Full Changelog: actions/upload-artifact@v7...v7.0.1

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

v7

Compare Source

v6.0.0

Compare Source

v6

Compare Source

v5.0.0

Compare Source

v5

Compare Source

aws-actions/configure-aws-credentials (aws-actions/configure-aws-credentials)

v6.2.0

Compare Source

v6.1.3

Compare Source

Bug Fixes
  • fix: allow kubelet token symlink in #​1805

v6.1.2

Compare Source

Bug Fixes

v6.1.1

Compare Source

What's Changed

Full Changelog: aws-actions/configure-aws-credentials@v6...v6.1.1

v6.1.0

Compare Source

Features

v6.0.0

Compare Source

⚠ BREAKING CHANGES
  • Update action to use node24 Note this requires GitHub action runner version v2.327.1 or later (#​1632) (a7a2c11)
Features
Bug Fixes
  • properly output aws-account-id and authenticated-arn when using role-chaining (#​1633) (7ceaf96)

v6

Compare Source

v5.1.1

Compare Source

Miscellaneous Chores
  • release 5.1.1 (56d6a58)
  • various dependency updates

v5.1.0

Compare Source

Features
Bug Fixes

v5.0.0

Compare Source

⚠ BREAKING CHANGES
  • Cleanup input handling. Changes invalid boolean input behavior (see #​1445)
Features

v5

Compare Source

cachix/cachix-action (cachix/cachix-action)

v17

Compare Source

What's Changed
Breaking changes
Bug fixes
  • Harden the post-build daemon hook against failing. Caching issues should not prevent builds from continuing.
  • Await main functions so that errors bubble up properly.

Full Changelog: cachix/cachix-action@v16...v17

v16

Compare Source

What's Changed
  • Fall back to os.tmpdir when the daemon socket path becomes too long by @​sandydoo in #​209
  • Added a small delay to allow post-build hooks to flush through by @​sandydoo in #​196
  • Upgraded dependencies

Full Changelog: cachix/cachix-action@v15...v16

cachix/install-nix-action (cachix/install-nix-action)

v31.10.6

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31...v31.10.6

v31.10.5

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31...v31.10.5

v31.10.4

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31.10.3...v31.10.4

v31.10.3

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31...v31.10.3

v31.10.2

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31...v31.10.2

v31.10.1

Compare Source

What's Changed

  • nix: 2.34.0 -> 2.34.1 by @​github-actions[bot] in #​269
    Fixes a bug introduced in 2.34.0 that made the Nix daemon fail to load authentication keys configured by cachix-action.

Full Changelog: cachix/install-nix-action@v31.10.0...v31.10.1

v31.10.0

Compare Source

What's Changed

⚠️ Nix 2.34.0 contains a regression that, under certain scenarios (a trusted-user + a client-side netrc-file), breaks authentication with private caches that rely on netrc files. This regression affects cachix/cachix-action.

UPD: 2.34.1 has been released with a patch for the authentication issue

Full Changelog: cachix/install-nix-action@v31.9.1...v31.10.0

v31.9.1

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31...v31.9.1

v31.9.0

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31.8.4...v31.9.0

v31.8.4

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31.8.3...v31.8.4

v31.8.3

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31.8.2...v31.8.3

v31.8.2

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31.8.1...v31.8.2

v31.8.1

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31...v31.8.1

v31.8.0

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31.7.0...v31.8.0

v31.7.0

Compare Source

What's Changed

  • feat: set up the environment based on the installer shell scripts by @​sandydoo in #​251

    Configures the following environment variables:

    • NIX_PROFILES
    • NIX_SSL_CERT_FILE (if not set)

    Adds the bin directory from the user's profile to $PATH.

Full Changelog: cachix/install-nix-action@v31.6.2...v31.7.0

v31.6.2

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31...v31.6.2

v31.6.1

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31...v31.6.1

v31.6.0

Compare Source

What's Changed

New Contributors

Full Changelog: cachix/install-nix-action@v31.5.2...v31.6.0

v31.5.2

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31...v31.5.2

v31.5.1

Compare Source

What's Changed

New Contributors

Full Changelog: cachix/install-nix-action@v31.5.0...v31.5.1

v31.5.0

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31.4.1...v31.5.0

v31.4.1

Compare Source

What's Changed

New Contributors

Full Changelog: cachix/install-nix-action@v31.4.0...v31.4.1

v31.4.0

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31.3.0...v31.4.0

v31.3.0

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31.2.0...v31.3.0

v31.2.0

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31.1.0...v31.2.0

v31.1.0

Compare Source

What's Changed

Full Changelog: cachix/install-nix-action@v31.0.0...v31.1.0

v31.0.0

Compare Source

What's Changed
New Contributors

Full Changelog: cachix/install-nix-action@v30...v31.0.0

v31

Compare Source

Starting with v31, this action will use semantic versioning for releases.
Major tags, like v31, will be bumped to point to the latest minor/patch release.
This is in line with how most GitHub actions manage releases.

What's Changed

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "after 5am and before 8am on Wednesday"
  • 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/gh-actions branch from a20c9aa to fc51a8d Compare January 6, 2025 15:43
@renovate renovate Bot force-pushed the renovate/gh-actions branch 2 times, most recently from f1ff1a7 to 5c9eea1 Compare February 25, 2025 23:45
@renovate renovate Bot force-pushed the renovate/gh-actions branch from 5c9eea1 to 6fbd5cc Compare March 11, 2025 07:26
@renovate renovate Bot force-pushed the renovate/gh-actions branch from 6fbd5cc to 1816ec7 Compare April 12, 2025 03:53
@renovate renovate Bot force-pushed the renovate/gh-actions branch from 1816ec7 to 0b4d2db Compare June 22, 2025 23:55
@renovate renovate Bot force-pushed the renovate/gh-actions branch from 0b4d2db to fabb8c1 Compare July 19, 2025 12:04
@renovate renovate Bot force-pushed the renovate/gh-actions branch 2 times, most recently from 4736f03 to 0917177 Compare August 11, 2025 23:38
@renovate renovate Bot force-pushed the renovate/gh-actions branch 2 times, most recently from 064a738 to f987c9b Compare September 4, 2025 11:52
@renovate renovate Bot force-pushed the renovate/gh-actions branch from f987c9b to fbb01d4 Compare October 26, 2025 03:59
@renovate renovate Bot force-pushed the renovate/gh-actions branch from fbb01d4 to 239fb83 Compare November 22, 2025 03:42
@renovate renovate Bot force-pushed the renovate/gh-actions branch 2 times, most recently from 4817d19 to deaa67a Compare December 14, 2025 12:15
@renovate renovate Bot force-pushed the renovate/gh-actions branch from deaa67a to 4922b41 Compare February 5, 2026 07:36
@renovate renovate Bot force-pushed the renovate/gh-actions branch from 4922b41 to 97570e6 Compare February 14, 2026 06:51
@renovate renovate Bot force-pushed the renovate/gh-actions branch from 97570e6 to b6312bf Compare March 1, 2026 07:22
@renovate renovate Bot force-pushed the renovate/gh-actions branch from b6312bf to a9c8371 Compare March 31, 2026 08:49
@renovate renovate Bot force-pushed the renovate/gh-actions branch from a9c8371 to 271363b Compare April 19, 2026 05:04
@renovate renovate Bot force-pushed the renovate/gh-actions branch from 271363b to f86ebfb Compare May 1, 2026 09:45
@renovate renovate Bot force-pushed the renovate/gh-actions branch from f86ebfb to 5f3e1ae Compare June 12, 2026 13:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants