From 7b2f197247c2323f43aec7e4fdfe24c2fd6253e2 Mon Sep 17 00:00:00 2001 From: ynamite Date: Tue, 2 Jun 2026 21:22:06 +0200 Subject: [PATCH] ci: bump workflow actions to Node 24-compatible majors GitHub flagged the workflow actions as running on the deprecated Node 20 runtime (forced to Node 24 after 2026-06-16, removed 2026-09-16). Bump each to its latest stable major: - actions/checkout v4 -> v6 - pnpm/action-setup v3 -> v6 (version: 9 still passed explicitly) - actions/setup-node v4 -> v6 (node-version: 20 runtime unchanged) - softprops/action-gh-release v2 -> v3 Our usage relies only on stable inputs, so no other changes are needed. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/ci.yml | 6 +++--- .github/workflows/release.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e3109a3..ccd468b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,13 +11,13 @@ jobs: timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - - uses: pnpm/action-setup@v3 + - uses: pnpm/action-setup@v6 with: version: 9 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: 20 cache: pnpm diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 164dee9..37de23f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,13 +20,13 @@ jobs: timeout-minutes: 15 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - - uses: pnpm/action-setup@v3 + - uses: pnpm/action-setup@v6 with: version: 9 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: 20 cache: pnpm @@ -115,7 +115,7 @@ jobs: - name: Create GitHub Release if: github.event_name == 'push' - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: name: ${{ github.ref_name }} body: ${{ steps.notes.outputs.body }}