From 47799c38d2f3bbc92c29afd5e12153de64dda662 Mon Sep 17 00:00:00 2001 From: mayaqf Date: Sun, 30 Aug 2026 18:48:17 +0900 Subject: [PATCH] chore: bump actions to node24-compat versions - actions/checkout v4 -> v6 (ci.yml, release.yml) - softprops/action-gh-release v2 -> v3 (release.yml) Node 20 actions were already forced to node24 runtime since 2026-06-02; these bumps remove the deprecation warnings and move off the frozen v2 line. Co-Authored-By: Claude --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f96f8c2..c41fb5c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: build: runs-on: windows-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Configure (x64) run: cmake -S . -B build -A x64 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c142ab5..15b1232 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: release: runs-on: windows-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Configure & build (x64) run: | @@ -38,7 +38,7 @@ jobs: ls -la staging - name: Upload to GitHub Releases - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: files: staging/* generate_release_notes: true \ No newline at end of file