Skip to content

Commit 73cca2c

Browse files
ldv-altsolardiz
authored andcommitted
github: switch from actions/checkout@v2 to actions/checkout@v3
This fixes the following diagnostic warning: Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
1 parent 070cf4a commit 73cca2c

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
@@ -6,7 +6,7 @@ jobs:
66
whitespace-errors:
77
runs-on: ubuntu-20.04
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v3
1010
- name: check
1111
run: git diff-index --check --cached 4b825dc642cb6eb9a060e54bf8d69288fbee4904
1212

@@ -16,7 +16,7 @@ jobs:
1616
CC: gcc-11
1717
TARGET: x86_64
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
with:
2121
fetch-depth: 0
2222
- name: install dependencies
@@ -30,7 +30,7 @@ jobs:
3030
CC: gcc-10
3131
TARGET: x86_64
3232
steps:
33-
- uses: actions/checkout@v2
33+
- uses: actions/checkout@v3
3434
with:
3535
fetch-depth: 0
3636
- name: install dependencies
@@ -44,7 +44,7 @@ jobs:
4444
CC: gcc
4545
TARGET: x86_64
4646
steps:
47-
- uses: actions/checkout@v2
47+
- uses: actions/checkout@v3
4848
with:
4949
fetch-depth: 0
5050
- name: install dependencies
@@ -58,7 +58,7 @@ jobs:
5858
CC: gcc-8
5959
TARGET: x86_64
6060
steps:
61-
- uses: actions/checkout@v2
61+
- uses: actions/checkout@v3
6262
with:
6363
fetch-depth: 0
6464
- name: install dependencies
@@ -72,7 +72,7 @@ jobs:
7272
CC: clang-12
7373
TARGET: x86_64
7474
steps:
75-
- uses: actions/checkout@v2
75+
- uses: actions/checkout@v3
7676
with:
7777
fetch-depth: 0
7878
- name: install dependencies
@@ -86,7 +86,7 @@ jobs:
8686
CC: clang-11
8787
TARGET: x86_64
8888
steps:
89-
- uses: actions/checkout@v2
89+
- uses: actions/checkout@v3
9090
with:
9191
fetch-depth: 0
9292
- name: install dependencies
@@ -100,7 +100,7 @@ jobs:
100100
CC: clang
101101
TARGET: x86_64
102102
steps:
103-
- uses: actions/checkout@v2
103+
- uses: actions/checkout@v3
104104
with:
105105
fetch-depth: 0
106106
- name: install dependencies
@@ -114,7 +114,7 @@ jobs:
114114
CC: clang-9
115115
TARGET: x86_64
116116
steps:
117-
- uses: actions/checkout@v2
117+
- uses: actions/checkout@v3
118118
with:
119119
fetch-depth: 0
120120
- name: install dependencies
@@ -128,7 +128,7 @@ jobs:
128128
CC: clang-8
129129
TARGET: x86_64
130130
steps:
131-
- uses: actions/checkout@v2
131+
- uses: actions/checkout@v3
132132
with:
133133
fetch-depth: 0
134134
- name: install dependencies

0 commit comments

Comments
 (0)