ci: use shfmt fork

Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
Paul Meyer 2022-11-17 14:38:01 +01:00
parent ba899060fd
commit 9c405ceb02
2 changed files with 12 additions and 1 deletions

View File

@ -23,8 +23,19 @@ jobs:
with:
ref: ${{ github.head_ref }}
- name: Setup Go environment
uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f # tag=v3.3.1
with:
go-version: "1.19.3"
- name: Install shellfmt
shell: bash
run: |
go install github.com/katexochen/sh/v3/cmd/shfmt@latest
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@6d3f514f44620b9d4488e380339edc0d9bbe2fba # master
with:
severity: info
ignore_paths: charts/cilium
additional_files: $(shfmt -f . | grep -v helm/charts/cilium)

View File

@ -31,7 +31,7 @@ jobs:
- name: Install shellfmt
shell: bash
run: |
go install mvdan.cc/sh/v3/cmd/shfmt@latest
go install github.com/katexochen/sh/v3/cmd/shfmt@latest
- name: Run shellfmt
shell: bash