Skip to content

workflows: bump helm/kind-action from 1.10.0 to 1.11.0 #273

workflows: bump helm/kind-action from 1.10.0 to 1.11.0

workflows: bump helm/kind-action from 1.10.0 to 1.11.0 #273

Workflow file for this run

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]