Skip to content

Commit 528b1d1

Browse files
Enrico Usaienrico-usai
authored andcommitted
Use latest version of checkout GitHub action
I saw this error in the GitHub Action output: Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2, github/codeql-action/init@v1, github/codeql-action/analyze@v1. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Signed-off-by: Enrico Usai <[email protected]>
1 parent 9e49d78 commit 528b1d1

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/changelog_enforcer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
changelog:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@main
1212
- uses: dangoslen/[email protected]
1313
with:
1414
changeLogPath: CHANGELOG.md

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
name: DepCheck
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@main
1111
- name: Dependency Check
1212
uses: dependency-check/Dependency-Check_Action@main
1313
with:
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup Ruby
3232

3333
steps:
34-
- uses: actions/checkout@v2
34+
- uses: actions/checkout@main
3535
- name: Setup Ruby
3636
uses: ruby/setup-ruby@v1
3737
with:
@@ -66,7 +66,7 @@ jobs:
6666
toxenv: code-linters
6767

6868
steps:
69-
- uses: actions/checkout@v2
69+
- uses: actions/checkout@main
7070
- name: Setup Python
7171
uses: actions/setup-python@v2
7272
with:
@@ -79,7 +79,7 @@ jobs:
7979
name: Shellcheck
8080
runs-on: ubuntu-latest
8181
steps:
82-
- uses: actions/checkout@v2
82+
- uses: actions/checkout@main
8383
- name: Run ShellCheck
8484
uses: ludeeus/action-shellcheck@master
8585
with:

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
language: [ 'python' ]
2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@main
2424
- name: Initialize CodeQL
2525
uses: github/codeql-action/init@v2
2626
with:

.github/workflows/system-tests-centos7.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
ports:
1717
- 5000:5000
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@main
2020
- name: Set up Docker Buildx
2121
id: buildx
2222
uses: docker/setup-buildx-action@v1

.github/workflows/system-tests-ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
ports:
1717
- 5000:5000
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@main
2020
- name: Set up Docker Buildx
2121
id: buildx
2222
uses: docker/setup-buildx-action@v1

0 commit comments

Comments
 (0)