diff options
author | Ayush Agarwal <ayushnix@fastmail.com> | 2022-05-14 11:50:14 +0530 |
---|---|---|
committer | Ayush Agarwal <ayushnix@fastmail.com> | 2022-05-14 11:50:14 +0530 |
commit | 7c97ea201aab4b60cd6ad32b778652c5c23ded57 (patch) | |
tree | 14666f4317eac2c4d5fc699bcdc7e8791e5f1de9 | |
parent | 976ef3e2725ad775a7aa1c111ac7e523d0f84754 (diff) |
ci: update github actions and docker images
-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 |