diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b040d6c..4965991 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,8 +11,8 @@ jobs: name: release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: lts/* cache: npm diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1230e15..66c35a6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,10 +14,11 @@ jobs: node_version: - 18 - 20 + - 22 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node_version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node_version }} cache: npm @@ -27,10 +28,10 @@ jobs: runs-on: ubuntu-latest needs: test_matrix steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: cache: npm - node-version: 16 + node-version: 22 - run: npm ci - run: npm run lint