Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ permissions:
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -D warnings
# Opt every JavaScript-based action in this workflow into the Node.js 24
# runner ahead of GitHub's 2026-06-02 forced-default. Silences the
# "Node.js 20 actions are deprecated" warning the runner emits on every
# checkout / upload-artifact / sticky-pull-request-comment step. Remove
# once Node.js 24 is the default runtime.
# https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'

jobs:
fmt:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ permissions:
pages: write
id-token: write

env:
# Opt every JavaScript-based action in this workflow into the Node.js 24
# runner ahead of GitHub's 2026-06-02 forced-default. See ci.yml for the
# full rationale.
# https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'

# Allow only one concurrent deployment, skipping in-flight runs but always
# letting the most recent push reach production. Manually-dispatched runs
# fall outside the cancel-in-progress to support targeted re-deploys.
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ on:
permissions:
contents: read

env:
# Opt every JavaScript-based action in this workflow into the Node.js 24
# runner ahead of GitHub's 2026-06-02 forced-default. See ci.yml for the
# full rationale.
# https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'

jobs:
fuzz:
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
RUST_BACKTRACE: 1
# Opt every JavaScript-based action in this workflow into the Node.js 24
# runner ahead of GitHub's 2026-06-02 forced-default. See ci.yml for the
# full rationale.
# https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'

jobs:
preflight:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/sbom-diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ permissions:
contents: read
pull-requests: write # to upsert the diff comment

env:
# Opt every JavaScript-based action in this workflow into the Node.js 24
# runner ahead of GitHub's 2026-06-02 forced-default. See ci.yml for the
# full rationale.
# https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'

concurrency:
group: sbom-diff-${{ github.event.pull_request.number }}
cancel-in-progress: true
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed

- **Workflows opt into the Node.js 24 runner ahead of GitHub's
2026-06-02 forced-default.** Every workflow now sets
`FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'` at the top-level
`env:` block, silencing the runner's "Node.js 20 actions are
deprecated" warning that was firing on every `actions/checkout`,
`upload-artifact`, and sticky-pull-request-comment step. Covers
`ci.yml`, `docs.yml`, `fuzz.yml`, `release.yml`, and
`sbom-diff.yml`. Remove the env var once Node.js 24 is the default
runtime (after 2026-09-16 per GitHub's deprecation timeline).

### Fixed

- **Coverage-report PR comment no longer autolinks to a fake parked
Expand Down
Loading