Skip to content

Commit 65a68b7

Browse files
marc-hbkv2019i
authored andcommitted
.github: upgrade all checkout actions to v3
Search and replace checkout@v2 with checkout@v3. This finally gets rid of all warnings "Node.js 12 actions are deprecated". We've been using v3 in a few other places and never met any backwards compatibility issue. Signed-off-by: Marc Herbert <marc.herbert@intel.com>
1 parent 3a5f7a3 commit 65a68b7

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/codestyle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
# depth 2 so:
3434
# ^1. we can show the Subject of the current target branch tip
3535
# ^2. we reconnect/graft to the later fetch pull/1234/head,
36-
- uses: actions/checkout@v2
36+
- uses: actions/checkout@v3
3737
with: {fetch-depth: 2}
3838

3939
- name: install codespell
@@ -56,7 +56,7 @@ jobs:
5656
yamllint:
5757
runs-on: ubuntu-latest
5858
steps:
59-
- uses: actions/checkout@v2
59+
- uses: actions/checkout@v3
6060

6161
- name: run yamllint
6262
# Quoting to please all parsers is hard. This indirection helps.

.github/workflows/installer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
]
2929

3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v3
3232
# From time to time this will catch a git tag and change SOF_VERSION
3333
with: {fetch-depth: 50, submodules: recursive}
3434

.github/workflows/repro-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-20.04
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
with: {fetch-depth: 5, submodules: recursive}
2424

2525
- name: docker pull

.github/workflows/testbench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-22.04
3434

3535
steps:
36-
- uses: actions/checkout@v2
36+
- uses: actions/checkout@v3
3737
with: {fetch-depth: 5}
3838

3939
- name: apt get

.github/workflows/tools.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
top-level_default_CMake_target_ALL:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616

1717
# The ALSA version in Ubuntu 20.04 is buggy
1818
# (https://github.com/thesofproject/sof/issues/2543) and likely

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
cmocka_utests:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
with: {fetch-depth: 2}
1919

2020
- name: build and run all defconfigs

0 commit comments

Comments
 (0)