diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4a63c9b..e255e98 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,19 +9,19 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [22.x] + node-version: [24.x] steps: - name: Restore Git repository cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .git key: git-cache-${{ github.ref_name }} restore-keys: | git-cache-main git-cache- - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Tests with Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: "npm"