Skip to content

Commit 6c32a83

Browse files
committed
ci: migrating checkout action to v3 and upload action to v3.1.1
1 parent 48b11f3 commit 6c32a83

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- 'include'
3737

3838
steps:
39-
- uses: actions/checkout@v2
39+
- uses: actions/checkout@v3
4040

4141
- name: Run clang-format check for C++
4242
uses: HorstBaerbel/action-clang-format@master
@@ -50,7 +50,7 @@ jobs:
5050

5151
steps:
5252
- name: Checkout code
53-
uses: actions/checkout@master
53+
uses: actions/checkout@v3
5454

5555
- name: Update diagram
5656
uses: githubocto/repo-visualizer@main
@@ -121,7 +121,7 @@ jobs:
121121
}
122122

123123
steps:
124-
- uses: actions/checkout@v2
124+
- uses: actions/checkout@v3
125125
with:
126126
submodules: recursive
127127

@@ -226,13 +226,13 @@ jobs:
226226
cp -r tests/cpp temp/
227227
228228
- name: Upload artifact
229-
uses: actions/upload-artifact@v2
229+
uses: actions/upload-artifact@v3.1.1
230230
with:
231231
name: ${{ matrix.config.artifact }}
232232
path: artifact
233233

234234
- name: Upload temp artifact
235-
uses: actions/upload-artifact@v2
235+
uses: actions/upload-artifact@v3.1.1
236236
with:
237237
name: temp-${{ matrix.config.artifact }}
238238
path: temp
@@ -259,20 +259,20 @@ jobs:
259259
- { os: macos-latest, name: "MacOS Clang 12", artifact: "macos-clang-12", }
260260

261261
steps:
262-
- uses: actions/checkout@v2
262+
- uses: actions/checkout@v3
263263
with:
264264
submodules: recursive
265265

266266
- name: Download artifact
267267
id: download
268-
uses: actions/download-artifact@v2
268+
uses: actions/download-artifact@v3.0.1
269269
with:
270270
name: ${{ matrix.config.artifact }}
271271
path: build
272272

273273
- name: Download temp artifact
274274
id: download-artifact
275-
uses: actions/download-artifact@v2
275+
uses: actions/download-artifact@v3.0.1
276276
with:
277277
name: temp-${{ matrix.config.artifact }}
278278
path: artifact
@@ -310,13 +310,13 @@ jobs:
310310
needs: [build]
311311

312312
steps:
313-
- uses: actions/checkout@v2
313+
- uses: actions/checkout@v3
314314
with:
315315
submodules: recursive
316316

317317
- name: Download artifact
318318
id: download
319-
uses: actions/download-artifact@v2
319+
uses: actions/download-artifact@v3.0.1
320320
with:
321321
name: "ubuntu-clang-11-valgrind"
322322
path: build

0 commit comments

Comments
 (0)