Update ShellCheck GitHub action

This commit is contained in:
angristan 2019-05-12 17:20:06 +02:00
parent df5609db56
commit b3289c882b
1 changed files with 4 additions and 3 deletions

View File

@ -1,8 +1,9 @@
workflow "ShellCheck" { workflow "ShellCheck" {
on = "push" on = "push"
resolves = ["shellcheck"] resolves = ["ShellCheck"]
} }
action "shellcheck" { action "ShellCheck" {
uses = "ludeeus/actions/shellcheck@master" uses = "actions/bin/shellcheck@master"
args = "wireguard-install.sh"
} }