Skip to content

Commit

Permalink
Update shellcheck from 0.8.0 to 0.10.0 (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
avindra committed Mar 10, 2024
1 parent 1cec217 commit d019129
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ runs:
shell: bash
env:
# yamllint disable-line rule:line-length
SC_URL: https://github.com/koalaman/shellcheck/releases/download/v0.8.0/shellcheck-v0.8.0.linux.x86_64.tar.xz
SC_URL: https://github.com/koalaman/shellcheck/releases/download/v0.10.0/shellcheck-v0.10.0.linux.x86_64.tar.xz
run: |
echo "Installing ShellCheck..." >&2
mkdir --parents "$HOME/.local/bin"
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
curl --silent --location "$SC_URL" \
| tar --extract --xz --directory="$HOME/.local/bin" \
--strip-components=1 shellcheck-v0.8.0/shellcheck
--strip-components=1 shellcheck-v0.10.0/shellcheck
shellcheck --version >&2
- name: Run ShellCheck
Expand Down

0 comments on commit d019129

Please sign in to comment.