Bump docker/setup-buildx-action from 2.9.0 to 3.0.0 #45
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
--- | |
# Example source: https://github.com/BretFisher/github-actions-templates | |
# THIS IS NOT A TEMPLATE. | |
# This is just for linting the gha-workflows repo itself. | |
# We call the reusable workflow from its file path. | |
name: Lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
call-super-linter: | |
name: Call Super-Linter | |
uses: ./.github/workflows/reusable-super-linter.yaml | |
permissions: | |
contents: read # clone the repo to lint | |
statuses: write #read/write to repo custom statuses |