Skip to content

Commit 24440ed

Browse files
committed
GitHub Actions: use actions/checkout@v3
1 parent 51f1c58 commit 24440ed

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/codecheck.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ jobs:
88
run: |
99
wget -O /opt/shellcheck-stable.linux.x86_64.tar.xz https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz
1010
tar xf /opt/shellcheck-stable.linux.x86_64.tar.xz -C /opt
11+
1112
- name: Print installed ShellCheck version
1213
run: /opt/shellcheck-stable/shellcheck --version
14+
1315
- name: Check out the repository
14-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
17+
1518
- name: Run ShellCheck on all files
1619
run: find . '(' -name '*.sh' ')' -exec /opt/shellcheck-stable/shellcheck {} +

0 commit comments

Comments
 (0)