chore(deps): bump docker/setup-buildx-action from 2.9.1 to 3.0.0 #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ================================================================== | |
# ShellCheck Linter Template | |
# ================================================================== | |
# This is the example you should work from to implement your own | |
# reusable workflow which calls your own reusable action | |
# ================================================================== | |
name: ShellCheck Linter Template | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
shellcheck-linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run ShellCheck | |
uses: ragsworks/reusable-linters/.github/actions/shellcheck@master | |
with: | |
cli-args: "--format=checkstyle --severity=info .github/actions/shellcheck/docker/tests/script.sh" |