diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1f90c48..ccb0bf05 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,11 +15,11 @@ jobs: os: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Use Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: '22' + node-version: '24' - run: npm ci --foreground-scripts - run: npm run check if: ${{ matrix.os == 'ubuntu-latest' }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index de7eab6f..1c2fa12c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,11 +19,11 @@ jobs: environment: releases steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: '22' + node-version: '24' - name: Install dependencies run: npm ci - name: Setup release environment