workflows: bump helm/kind-action from 1.10.0 to 1.11.0 #273
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
name: Lint PRs | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
tflint: | |
name: PR - Tflint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: tflint | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: reviewdog/[email protected] | |
with: | |
github_token: ${{ secrets.github_token }} | |
working_directory: terraform | |
fail_on_error: "true" | |
- name: tflint | |
if: ${{ github.event_name == 'workflow_dispatch' }} | |
run: docker run --rm -v "$(pwd)/terraform:/data" -t ghcr.io/terraform-linters/tflint | |
shellcheck-pr: | |
runs-on: ubuntu-latest | |
name: PR - Shellcheck | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ludeeus/action-shellcheck@master | |
actionlint-pr: | |
runs-on: ubuntu-latest | |
name: PR - Actionlint | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
echo "::add-matcher::.github/actionlint-matcher.json" | |
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) | |
./actionlint -color -shellcheck= | |
shell: bash | |
docslint-pr: | |
runs-on: ubuntu-latest | |
name: PR - Markdownlint | |
steps: | |
- name: Run markdownlint | |
uses: actionshub/[email protected] |