Skip to content

Commit 036a938

Browse files
committed
Bump versions of used actions
1 parent 699636b commit 036a938

33 files changed

+72
-72
lines changed

.github/workflows/check_licenses.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
# Checkout the repository:
5252
- name: 'Checkout repository'
53-
uses: actions/checkout@v2
53+
uses: actions/checkout@v3
5454
with:
5555
# Specify whether to remove untracked files before checking out the repository:
5656
clean: false
@@ -71,7 +71,7 @@ jobs:
7171

7272
# Install Node.js:
7373
- name: 'Install Node.js'
74-
uses: actions/setup-node@v2
74+
uses: actions/setup-node@v3
7575
with:
7676
node-version: '16' # 'lts/*'
7777
timeout-minutes: 5
@@ -117,7 +117,7 @@ jobs:
117117

118118
# Upload the log file:
119119
- name: 'Upload log file'
120-
uses: actions/upload-artifact@v2
120+
uses: actions/upload-artifact@v3
121121
if: always()
122122
with:
123123
# Define a name for the uploaded artifact:

.github/workflows/check_required_files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
# Checkout the repository:
4141
- name: 'Checkout repository'
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v3
4343
with:
4444
# Specify whether to remove untracked files before checking out the repository:
4545
clean: true

.github/workflows/lint_changed_files.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
steps:
4141
# Checkout the repository:
4242
- name: 'Checkout repository'
43-
uses: actions/checkout@v2
43+
uses: actions/checkout@v3
4444
with:
4545
# Specify whether to remove untracked files before checking out the repository:
4646
clean: true
@@ -54,7 +54,7 @@ jobs:
5454

5555
# Install Node.js:
5656
- name: 'Install Node.js'
57-
uses: actions/setup-node@v2
57+
uses: actions/setup-node@v3
5858
with:
5959
node-version: '16' # 'lts/*'
6060
timeout-minutes: 5

.github/workflows/lint_random_files.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
steps:
8484
# Checkout the repository:
8585
- name: 'Checkout repository'
86-
uses: actions/checkout@v2
86+
uses: actions/checkout@v3
8787
with:
8888
# Specify whether to remove untracked files before checking out the repository:
8989
clean: true
@@ -97,7 +97,7 @@ jobs:
9797

9898
# Install Node.js:
9999
- name: 'Install Node.js'
100-
uses: actions/setup-node@v2
100+
uses: actions/setup-node@v3
101101
with:
102102
node-version: '16' # 'lts/*'
103103
timeout-minutes: 5

.github/workflows/linux_benchmark.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131

132132
# Checkout the repository:
133133
- name: 'Checkout repository'
134-
uses: actions/checkout@v2
134+
uses: actions/checkout@v3
135135
with:
136136
# Specify whether to remove untracked files before checking out the repository:
137137
clean: false
@@ -173,7 +173,7 @@ jobs:
173173

174174
# Install Node.js:
175175
- name: 'Install Node.js'
176-
uses: actions/setup-node@v2
176+
uses: actions/setup-node@v3
177177
with:
178178
node-version: ${{ matrix.NODE_VERSION }}
179179
timeout-minutes: 5
@@ -243,7 +243,7 @@ jobs:
243243

244244
# Upload the log file:
245245
- name: 'Upload log file'
246-
uses: actions/upload-artifact@v2
246+
uses: actions/upload-artifact@v3
247247
if: always()
248248
with:
249249
# Define a name for the uploaded artifact (ensuring a unique name for each job):

.github/workflows/linux_examples.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131

132132
# Checkout the repository:
133133
- name: 'Checkout repository'
134-
uses: actions/checkout@v2
134+
uses: actions/checkout@v3
135135
with:
136136
# Specify whether to remove untracked files before checking out the repository:
137137
clean: false
@@ -173,7 +173,7 @@ jobs:
173173

174174
# Install Node.js:
175175
- name: 'Install Node.js'
176-
uses: actions/setup-node@v2
176+
uses: actions/setup-node@v3
177177
with:
178178
node-version: ${{ matrix.NODE_VERSION }}
179179
timeout-minutes: 5
@@ -243,7 +243,7 @@ jobs:
243243

244244
# Upload the log file:
245245
- name: 'Upload log file'
246-
uses: actions/upload-artifact@v2
246+
uses: actions/upload-artifact@v3
247247
if: always()
248248
with:
249249
# Define a name for the uploaded artifact (ensuring a unique name for each job):

.github/workflows/linux_test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127

128128
# Checkout the repository:
129129
- name: 'Checkout repository'
130-
uses: actions/checkout@v2
130+
uses: actions/checkout@v3
131131
with:
132132
# Specify whether to remove untracked files before checking out the repository:
133133
clean: false
@@ -169,7 +169,7 @@ jobs:
169169

170170
# Install Node.js:
171171
- name: 'Install Node.js'
172-
uses: actions/setup-node@v2
172+
uses: actions/setup-node@v3
173173
with:
174174
node-version: ${{ matrix.NODE_VERSION }}
175175
timeout-minutes: 5
@@ -239,7 +239,7 @@ jobs:
239239

240240
# Upload the log file:
241241
- name: 'Upload log file'
242-
uses: actions/upload-artifact@v2
242+
uses: actions/upload-artifact@v3
243243
if: always()
244244
with:
245245
# Define a name for the uploaded artifact (ensuring a unique name for each job):

.github/workflows/linux_test_cov.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131

132132
# Checkout the repository:
133133
- name: 'Checkout repository'
134-
uses: actions/checkout@v2
134+
uses: actions/checkout@v3
135135
with:
136136
# Specify whether to remove untracked files before checking out the repository:
137137
clean: false
@@ -173,7 +173,7 @@ jobs:
173173

174174
# Install Node.js:
175175
- name: 'Install Node.js'
176-
uses: actions/setup-node@v2
176+
uses: actions/setup-node@v3
177177
with:
178178
node-version: ${{ matrix.NODE_VERSION }}
179179
timeout-minutes: 5
@@ -243,7 +243,7 @@ jobs:
243243

244244
# Upload the log file:
245245
- name: 'Upload log file'
246-
uses: actions/upload-artifact@v2
246+
uses: actions/upload-artifact@v3
247247
if: always()
248248
with:
249249
# Define a name for the uploaded artifact (ensuring a unique name for each job):

.github/workflows/linux_test_install.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150

151151
# Checkout the repository:
152152
- name: 'Checkout repository'
153-
uses: actions/checkout@v2
153+
uses: actions/checkout@v3
154154
with:
155155
# Specify whether to remove untracked files before checking out the repository:
156156
clean: false
@@ -191,7 +191,7 @@ jobs:
191191

192192
# Install Node.js:
193193
- name: 'Install Node.js'
194-
uses: actions/setup-node@v2
194+
uses: actions/setup-node@v3
195195
with:
196196
node-version: ${{ matrix.NODE_VERSION }}
197197
timeout-minutes: 5
@@ -255,7 +255,7 @@ jobs:
255255

256256
# Upload the log file:
257257
- name: 'Upload log file'
258-
uses: actions/upload-artifact@v2
258+
uses: actions/upload-artifact@v3
259259
if: always()
260260
with:
261261
# Define a name for the uploaded artifact (ensuring a unique name for each job):

.github/workflows/macos_benchmark.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130

131131
# Checkout the repository:
132132
- name: 'Checkout repository'
133-
uses: actions/checkout@v2
133+
uses: actions/checkout@v3
134134
with:
135135
# Specify whether to remove untracked files before checking out the repository:
136136
clean: false
@@ -159,7 +159,7 @@ jobs:
159159

160160
# Install Node.js:
161161
- name: 'Install Node.js'
162-
uses: actions/setup-node@v2
162+
uses: actions/setup-node@v3
163163
with:
164164
node-version: ${{ matrix.NODE_VERSION }}
165165
timeout-minutes: 5
@@ -229,7 +229,7 @@ jobs:
229229

230230
# Upload the log file:
231231
- name: 'Upload log file'
232-
uses: actions/upload-artifact@v2
232+
uses: actions/upload-artifact@v3
233233
if: always()
234234
with:
235235
# Define a name for the uploaded artifact (ensuring a unique name for each job):

0 commit comments

Comments
 (0)