diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 728dffd..0f12460 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: node_version: - - 22 # end of life 2027-04-30 # coverage file uploaded from this version + - 24 # end of life 2028-04-30 # coverage file uploaded from this version name: build-lint-test - node ${{ matrix.node_version }} steps: - name: Check out Git repository diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b2b2028..1b6d97b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: 22 + node-version: 24 - name: Get yarn cache uses: actions/cache@v3 @@ -29,7 +29,7 @@ jobs: path: | **/node_modules ~/.cache - key: ${{ runner.os }}-node-22-yarn-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('.github/workflows/**.yml') }} + key: ${{ runner.os }}-node-24-yarn-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('.github/workflows/**.yml') }} - name: Install Node.js dependencies if: steps.yarn-cache.outputs.cache-hit != 'true'