diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml index 04729909..02754b92 100644 --- a/.github/workflows/pull.yml +++ b/.github/workflows/pull.yml @@ -10,22 +10,22 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [22, 24, 25] + node-version: [22, 24, 26] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: npm - - uses: pnpm/action-setup@v2 + - uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8 with: version: 7 - run: npm ci - run: npm test - run: npm run test:e2e - name: Upload e2e test artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: failure() with: name: e2e-test-artifact diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 90abe6aa..086616ed 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,11 +15,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [22, 24, 25] + node-version: [22, 24, 26] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: npm @@ -30,10 +30,10 @@ jobs: needs: test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: lts/* - run: npm ci