From 17edba9a91494d4d5afdd7fff09fcf2cf28c20b7 Mon Sep 17 00:00:00 2001 From: Mannes Brak Date: Sat, 30 May 2026 15:23:07 +0200 Subject: [PATCH] ci: bump GitHub Actions to latest majors (Node 24 runtime) checkout/setup-node v6, pnpm/action-setup v6, action-gh-release v3, codecov-action v6, repository-dispatch v4, pages artifact/deploy v5, configure-pages v6. Clears Node 20 runtime deprecation warnings. --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df6f431..0f0f2b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: pnpm/action-setup@v5 + - uses: pnpm/action-setup@v6 with: version: 9 @@ -45,7 +45,7 @@ jobs: - name: Upload coverage to Codecov if: matrix.node == '24' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} flags: unittests diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d0e9cc5..1b82ed6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: with: fetch-depth: 0 - - uses: pnpm/action-setup@v5 + - uses: pnpm/action-setup@v6 with: version: 9 @@ -76,7 +76,7 @@ jobs: - name: Create GitHub Release if: github.event_name == 'push' - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: generate_release_notes: true make_latest: ${{ steps.channel.outputs.prerelease == 'false' }}