Skip to content

Bump docker/setup-qemu-action from 2 to 3 #3942

Bump docker/setup-qemu-action from 2 to 3

Bump docker/setup-qemu-action from 2 to 3 #3942

Workflow file for this run

---
name: Lint
on: # yamllint disable-line rule:truthy
push: null
pull_request: null
workflow_call: null
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Super-Linter
uses: super-linter/[email protected]
env:
ANSIBLE_DIRECTORY: "docker/ansible/etc/ansible"
DISABLE_ERRORS: false
ERROR_ON_MISSING_EXEC_BIT: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LINTER_RULES_PATH: config/lint
VALIDATE_ALL_CODEBASE: true
VALIDATE_JSCPD_ALL_CODEBASE: true
pre_commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Run pre-commit"
run: |
set -o errexit
set -o nounset
scripts/run-pre-commit.sh
...