chore(deps): bump docker/setup-buildx-action from 2.9.1 to 2.10.0 #10
Workflow file for this run
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
# ================================================================== | |
# HadoLint Linter Template | |
# ================================================================== | |
# This is the example you should work from to implement your own | |
# reusable workflow which calls your own reusable action | |
# ================================================================== | |
name: HadoLint Linter Template | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
hadolint-linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run HadoLint | |
uses: ragsworks/reusable-linters/.github/actions/hadolint@master | |
with: | |
cli-args: ".github/actions/hadolint/docker/tests/Dockerfile" |