k3s/.github/workflows/actionlint.yaml
Chris Wayne b483ddc65a
Pin GH Actions to commit sha (#13861)
Signed-off-by: Chris Wayne <cwayne18@gmail.com>
2026-03-26 14:12:15 -04:00

20 lines
576 B
YAML

name: Lint Action Workflows
on:
pull_request:
paths:
- ".github/workflows/*"
jobs:
acitonlint:
name: Lint GitHub Workflows
runs-on: ubuntu-latest # Runs on standard runner, docker pulls with --platform
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: actionlint
uses: raven-actions/actionlint@205b530c5d9fa8f44ae9ed59f341a0db994aa6f8 # v2
with:
shellcheck: false
pyflakes: false
cache: ${{ github.ref == 'refs/heads/main' }}