diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2023-10-31 00:05:03 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-30 17:05:03 +0100 |
commit | f61311f7a0f1a4c2fab1eeaa747654d4281bc56b (patch) | |
tree | 1281cb840fb5a0f4cc2325e53fb0c10ab911ed03 /.github | |
parent | afa2f2ebf6bbceeae2846546afb78d316bca7d5f (diff) | |
download | Nim-f61311f7a0f1a4c2fab1eeaa747654d4281bc56b.tar.gz |
bump node to 20.x; since 16.x is End-of-Life (#22892)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci_bench.yml | 6 | ||||
-rw-r--r-- | .github/workflows/ci_packages.yml | 6 | ||||
-rw-r--r-- | .github/workflows/ci_publish.yml | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/ci_bench.yml b/.github/workflows/ci_bench.yml index 535b52355..7c76ed89b 100644 --- a/.github/workflows/ci_bench.yml +++ b/.github/workflows/ci_bench.yml @@ -21,10 +21,10 @@ jobs: with: fetch-depth: 2 - - name: 'Install node.js 16.x' - uses: actions/setup-node@v3 + - name: 'Install node.js 20.x' + uses: actions/setup-node@v4 with: - node-version: '16.x' + node-version: '20.x' - name: 'Install dependencies (Linux amd64)' if: runner.os == 'Linux' && matrix.cpu == 'amd64' diff --git a/.github/workflows/ci_packages.yml b/.github/workflows/ci_packages.yml index 1dabd6077..91ac83aec 100644 --- a/.github/workflows/ci_packages.yml +++ b/.github/workflows/ci_packages.yml @@ -32,10 +32,10 @@ jobs: with: fetch-depth: 2 - - name: 'Install node.js 16.x' - uses: actions/setup-node@v3 + - name: 'Install node.js 20.x' + uses: actions/setup-node@v4 with: - node-version: '16.x' + node-version: '20.x' - name: 'Install dependencies (Linux amd64)' if: runner.os == 'Linux' && matrix.cpu == 'amd64' diff --git a/.github/workflows/ci_publish.yml b/.github/workflows/ci_publish.yml index 26c617a8e..58da92206 100644 --- a/.github/workflows/ci_publish.yml +++ b/.github/workflows/ci_publish.yml @@ -21,10 +21,10 @@ jobs: with: fetch-depth: 2 - - name: 'Install node.js 16.x' - uses: actions/setup-node@v3 + - name: 'Install node.js 20.x' + uses: actions/setup-node@v4 with: - node-version: '16.x' + node-version: '20.x' - name: 'Install dependencies (Linux amd64)' if: runner.os == 'Linux' && matrix.cpu == 'amd64' |