about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-10-15 11:48:14 +0000
committerbors <bors@rust-lang.org>2022-10-15 11:48:14 +0000
commit5174d3d030c3f38e7f3fea857cc8a0f59f24b219 (patch)
tree1cd05c542869135071b016f7c6b9aebcdfab0f57
parent855cd5c2808c019b477cbd9f6ac96c8ae17d06f9 (diff)
parent7bf6f188de87ac682375e5228300ab707a912600 (diff)
downloadrust-5174d3d030c3f38e7f3fea857cc8a0f59f24b219.tar.gz
rust-5174d3d030c3f38e7f3fea857cc8a0f59f24b219.zip
Auto merge of #13419 - lnicola:bump-setup-node, r=lnicola
Bump `actions/setup-node`

Fixes more Node 12 deprecation warnings.
-rw-r--r--.github/workflows/ci.yaml4
-rw-r--r--.github/workflows/release.yaml8
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 9f5d02cd6b5..bb77324378a 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -116,9 +116,9 @@ jobs:
         uses: actions/checkout@v3
 
       - name: Install Nodejs
-        uses: actions/setup-node@v1
+        uses: actions/setup-node@v3
         with:
-          node-version: 16.x
+          node-version: 16
 
       - name: Install xvfb
         if: matrix.os == 'ubuntu-latest'
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index f2bbf1f6ff1..422fe29f9d5 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -76,9 +76,9 @@ jobs:
           rustup component add rust-src
 
       - name: Install Node.js
-        uses: actions/setup-node@v1
+        uses: actions/setup-node@v3
         with:
-          node-version: 16.x
+          node-version: 16
 
       - name: Update apt repositories
         if: matrix.target == 'aarch64-unknown-linux-gnu' || matrix.target == 'arm-unknown-linux-gnueabihf'
@@ -184,9 +184,9 @@ jobs:
     needs: ["dist", "dist-x86_64-unknown-linux-musl"]
     steps:
       - name: Install Nodejs
-        uses: actions/setup-node@v1
+        uses: actions/setup-node@v3
         with:
-          node-version: 16.x
+          node-version: 16
 
       - run: echo "TAG=$(date --iso -u)" >> $GITHUB_ENV
         if: github.ref == 'refs/heads/release'