diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 93dc6334..ececf1a3 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -36,10 +36,10 @@ jobs: name: "hugo" version: ${{env.HUGO_VERSION}} - - name: Use Node.js 18.x + - name: Use Node.js 20.x uses: actions/setup-node@v2 with: - node-version: 18.x + node-version: 20.x # TODO: Remove when possible (https://github.com/actions/setup-node/issues/515) - name: Windows Node fix if: ${{ matrix.os == 'windows-latest' }} @@ -47,7 +47,7 @@ jobs: $WhereNode = Get-Command node | Select-Object -ExpandProperty Definition $NodeDirPath = Split-Path $WhereNode -Parent cd $NodeDirPath - npm install npm@8.12.1 + npm install npm@10.17.0 - name: Use Ruby 2.7.x uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a80a4f33..baea557e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,10 +34,10 @@ jobs: - name: Enable Corepack before setting up Node run: corepack enable - - name: Use Node.js 18.x + - name: Use Node.js 20.x uses: actions/setup-node@v2 with: - node-version: 18.x + node-version: 20.x # TODO: Remove when possible (https://github.com/actions/setup-node/issues/515) - name: Windows Node fix if: ${{ matrix.os == 'windows-latest' }} @@ -45,7 +45,7 @@ jobs: $WhereNode = Get-Command node | Select-Object -ExpandProperty Definition $NodeDirPath = Split-Path $WhereNode -Parent cd $NodeDirPath - npm install npm@8.12.1 + npm install npm@10.17.0 - name: Use Ruby 2.7.x uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/test-node.yml b/.github/workflows/test-node.yml index 4ee1d83d..9491b991 100644 --- a/.github/workflows/test-node.yml +++ b/.github/workflows/test-node.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: - node-version: [16.x] + node-version: [20.x] os: [ubuntu-latest, windows-latest] steps: