From 35450dd5f2dda0ad7d2b1b8fba1e27343c630fcb Mon Sep 17 00:00:00 2001 From: Nicolas Marchildon Date: Sat, 8 Aug 2026 14:02:45 -0400 Subject: [PATCH] chore(ci): bump checkout and setup-node actions to v5 Eliminates Node.js 20 deprecation warnings. Both actions target Node.js 24 now, matching the CI matrix (22, 24). Co-authored-by: amber-bear-84 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e34c7b4..370d923 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,8 +13,8 @@ jobs: matrix: node-version: [22, 24] steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v5 + - uses: actions/setup-node@v5 with: node-version: ${{ matrix.node-version }} - run: npm install --legacy-peer-deps @@ -24,8 +24,8 @@ jobs: needs: test runs-on: arc-runners steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v5 + - uses: actions/setup-node@v5 with: node-version: 22 - run: npm install --legacy-peer-deps