diff options
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7728a28..ff2f1d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,16 +15,16 @@ jobs: image: koalaman/shellcheck-alpine:stable steps: - name: checkout tessen for shellcheck - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: run shellcheck run: shellcheck tessen format: name: use shfmt to check tessen code format runs-on: ubuntu-latest container: - image: mvdan/shfmt:v3.4.2-alpine + image: mvdan/shfmt:v3-alpine steps: - name: checkout tessen for shfmt - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: run shfmt run: shfmt -d -s -i 2 -bn -ci -sr tessen |