Skip to content

Commit 1670266

Browse files
aduh95juanarbol
authored andcommitted
tools: update GHA actions version
PR-URL: #42498 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Mestery <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent c9c0cc5 commit 1670266

16 files changed

+34
-34
lines changed

.github/workflows/auto-start-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
persist-credentials: false
4242

4343
- name: Install Node.js
44-
uses: actions/setup-node@v2
44+
uses: actions/setup-node@v3
4545
with:
4646
node-version: ${{ env.NODE_VERSION }}
4747

.github/workflows/build-tarball.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
persist-credentials: false
4343
- name: Set up Python ${{ env.PYTHON_VERSION }}
44-
uses: actions/setup-python@v2
44+
uses: actions/setup-python@v3
4545
with:
4646
python-version: ${{ env.PYTHON_VERSION }}
4747
- name: Environment Information
@@ -55,7 +55,7 @@ jobs:
5555
mkdir tarballs
5656
mv *.tar.gz tarballs
5757
- name: Upload tarball artifact
58-
uses: actions/upload-artifact@v2
58+
uses: actions/upload-artifact@v3
5959
with:
6060
name: tarballs
6161
path: tarballs
@@ -67,13 +67,13 @@ jobs:
6767
with:
6868
persist-credentials: false
6969
- name: Set up Python ${{ env.PYTHON_VERSION }}
70-
uses: actions/setup-python@v2
70+
uses: actions/setup-python@v3
7171
with:
7272
python-version: ${{ env.PYTHON_VERSION }}
7373
- name: Environment Information
7474
run: npx envinfo
7575
- name: Download tarball
76-
uses: actions/download-artifact@v2
76+
uses: actions/download-artifact@v3
7777
with:
7878
name: tarballs
7979
path: tarballs

.github/workflows/build-windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
persist-credentials: false
4242
- name: Set up Python ${{ env.PYTHON_VERSION }}
43-
uses: actions/setup-python@v2
43+
uses: actions/setup-python@v3
4444
with:
4545
python-version: ${{ env.PYTHON_VERSION }}
4646
- name: Install deps

.github/workflows/commit-lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
persist-credentials: false
2121
- run: git reset HEAD^2
2222
- name: Install Node.js
23-
uses: actions/setup-node@v2
23+
uses: actions/setup-node@v3
2424
with:
2525
node-version: ${{ env.NODE_VERSION }}
2626
- name: Validate commit message

.github/workflows/commit-queue.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
# Install dependencies
5757
- name: Install Node.js
58-
uses: actions/setup-node@v2
58+
uses: actions/setup-node@v3
5959
with:
6060
node-version: ${{ env.NODE_VERSION }}
6161
- name: Install node-core-utils

.github/workflows/coverage-linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
with:
3838
persist-credentials: false
3939
- name: Set up Python ${{ env.PYTHON_VERSION }}
40-
uses: actions/setup-python@v2
40+
uses: actions/setup-python@v3
4141
with:
4242
python-version: ${{ env.PYTHON_VERSION }}
4343
- name: Environment Information

.github/workflows/coverage-windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
persist-credentials: false
4141
- name: Set up Python ${{ env.PYTHON_VERSION }}
42-
uses: actions/setup-python@v2
42+
uses: actions/setup-python@v3
4343
with:
4444
python-version: ${{ env.PYTHON_VERSION }}
4545
- name: Install deps

.github/workflows/daily.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
persist-credentials: false
2020
- name: Use Node.js ${{ env.NODE_VERSION }}
21-
uses: actions/setup-node@v2
21+
uses: actions/setup-node@v3
2222
with:
2323
node-version: ${{ env.NODE_VERSION }}
2424
- name: Environment Information

.github/workflows/doc.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626
with:
2727
persist-credentials: false
2828
- name: Use Node.js ${{ env.NODE_VERSION }}
29-
uses: actions/setup-node@v2
29+
uses: actions/setup-node@v3
3030
with:
3131
node-version: ${{ env.NODE_VERSION }}
3232
- name: Environment Information
3333
run: npx envinfo
3434
- name: Build
3535
run: NODE=$(command -v node) make doc-only
36-
- uses: actions/upload-artifact@v2
36+
- uses: actions/upload-artifact@v3
3737
with:
3838
name: docs
3939
path: out/doc

.github/workflows/find-inactive-collaborators.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
persist-credentials: false
2323

2424
- name: Use Node.js ${{ env.NODE_VERSION }}
25-
uses: actions/setup-node@v2
25+
uses: actions/setup-node@v3
2626
with:
2727
node-version: ${{ env.NODE_VERSION }}
2828

.github/workflows/find-inactive-tsc.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323
persist-credentials: false
2424

2525
- name: Clone nodejs/TSC repository
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v3
2727
with:
2828
fetch-depth: 0
2929
path: .tmp
3030
persist-credentials: false
3131
repository: nodejs/TSC
3232

3333
- name: Use Node.js ${{ env.NODE_VERSION }}
34-
uses: actions/setup-node@v2
34+
uses: actions/setup-node@v3
3535
with:
3636
node-version: ${{ env.NODE_VERSION }}
3737

.github/workflows/linters.yml

+14-14
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
persist-credentials: false
2929
- name: Use Node.js ${{ env.NODE_VERSION }}
30-
uses: actions/setup-node@v2
30+
uses: actions/setup-node@v3
3131
with:
3232
node-version: ${{ env.NODE_VERSION }}
3333
- name: Environment Information
@@ -38,11 +38,11 @@ jobs:
3838
if: github.event.pull_request.draft == false
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v3
4242
with:
4343
persist-credentials: false
4444
- name: Set up Python ${{ env.PYTHON_VERSION }}
45-
uses: actions/setup-python@v2
45+
uses: actions/setup-python@v3
4646
with:
4747
python-version: ${{ env.PYTHON_VERSION }}
4848
- name: Environment Information
@@ -53,11 +53,11 @@ jobs:
5353
if: github.event.pull_request.draft == false
5454
runs-on: ubuntu-latest
5555
steps:
56-
- uses: actions/checkout@v2
56+
- uses: actions/checkout@v3
5757
with:
5858
persist-credentials: false
5959
- name: Use Node.js ${{ env.NODE_VERSION }}
60-
uses: actions/setup-node@v2
60+
uses: actions/setup-node@v3
6161
with:
6262
node-version: ${{ env.NODE_VERSION }}
6363
- name: Environment Information
@@ -77,11 +77,11 @@ jobs:
7777
if: github.event.pull_request.draft == false
7878
runs-on: ubuntu-latest
7979
steps:
80-
- uses: actions/checkout@v2
80+
- uses: actions/checkout@v3
8181
with:
8282
persist-credentials: false
8383
- name: Use Node.js ${{ env.NODE_VERSION }}
84-
uses: actions/setup-node@v2
84+
uses: actions/setup-node@v3
8585
with:
8686
node-version: ${{ env.NODE_VERSION }}
8787
- name: Environment Information
@@ -92,11 +92,11 @@ jobs:
9292
if: github.event.pull_request.draft == false
9393
runs-on: ubuntu-latest
9494
steps:
95-
- uses: actions/checkout@v2
95+
- uses: actions/checkout@v3
9696
with:
9797
persist-credentials: false
9898
- name: Set up Python ${{ env.PYTHON_VERSION }}
99-
uses: actions/setup-python@v2
99+
uses: actions/setup-python@v3
100100
with:
101101
python-version: ${{ env.PYTHON_VERSION }}
102102
- name: Environment Information
@@ -109,11 +109,11 @@ jobs:
109109
if: github.event.pull_request.draft == false
110110
runs-on: ubuntu-latest
111111
steps:
112-
- uses: actions/checkout@v2
112+
- uses: actions/checkout@v3
113113
with:
114114
persist-credentials: false
115115
- name: Use Python ${{ env.PYTHON_VERSION }}
116-
uses: actions/setup-python@v2
116+
uses: actions/setup-python@v3
117117
with:
118118
python-version: ${{ env.PYTHON_VERSION }}
119119
- name: Environment Information
@@ -127,7 +127,7 @@ jobs:
127127
if: github.event.pull_request.draft == false
128128
runs-on: ubuntu-latest
129129
steps:
130-
- uses: actions/checkout@v2
130+
- uses: actions/checkout@v3
131131
with:
132132
persist-credentials: false
133133
- run: shellcheck -V
@@ -137,7 +137,7 @@ jobs:
137137
if: github.event.pull_request.draft == false
138138
runs-on: ubuntu-latest
139139
steps:
140-
- uses: actions/checkout@v2
140+
- uses: actions/checkout@v3
141141
with:
142142
persist-credentials: false
143143
- uses: mszostok/[email protected]
@@ -147,7 +147,7 @@ jobs:
147147
if: ${{ github.event.pull_request }}
148148
runs-on: ubuntu-latest
149149
steps:
150-
- uses: actions/checkout@v2
150+
- uses: actions/checkout@v3
151151
with:
152152
fetch-depth: 2
153153
persist-credentials: false

.github/workflows/test-asan.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
with:
4848
persist-credentials: false
4949
- name: Set up Python ${{ env.PYTHON_VERSION }}
50-
uses: actions/setup-python@v2
50+
uses: actions/setup-python@v3
5151
with:
5252
python-version: ${{ env.PYTHON_VERSION }}
5353
- name: Environment Information

.github/workflows/test-internet.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
persist-credentials: false
3535
- name: Set up Python ${{ env.PYTHON_VERSION }}
36-
uses: actions/setup-python@v2
36+
uses: actions/setup-python@v3
3737
with:
3838
python-version: ${{ env.PYTHON_VERSION }}
3939
- name: Environment Information

.github/workflows/test-linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
persist-credentials: false
3838
- name: Set up Python ${{ env.PYTHON_VERSION }}
39-
uses: actions/setup-python@v2
39+
uses: actions/setup-python@v3
4040
with:
4141
python-version: ${{ env.PYTHON_VERSION }}
4242
- name: Environment Information

.github/workflows/test-macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
persist-credentials: false
4444
- name: Set up Python ${{ env.PYTHON_VERSION }}
45-
uses: actions/setup-python@v2
45+
uses: actions/setup-python@v3
4646
with:
4747
python-version: ${{ env.PYTHON_VERSION }}
4848
- name: Environment Information

0 commit comments

Comments
 (0)