chore(deps): update homebrew/actions digest to 9db18af #253
Workflow file for this run
This file contains hidden or 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: Main CI | |
| on: | |
| pull_request: | |
| branches: | |
| - "main" | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| all-status-check: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| needs: | |
| - ci-req-check | |
| - yaml-lint | |
| - shell-lint | |
| - action-lint | |
| - ansible-lint | |
| steps: | |
| - name: All status check | |
| run: echo "All status check passed" | |
| ci-req-check: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Check all-status-check | |
| run: | | |
| diff \ | |
| <(yq ".jobs | del(.all-status-check) | keys.[]" .github/workflows/ci.yml) \ | |
| <(yq ".jobs.all-status-check.needs.[]" .github/workflows/ci.yml) | |
| yaml-lint: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: reviewdog/action-yamllint@f01d8a48fd8d89f89895499fca2cff09f9e9e8c0 # v1.21.0 | |
| with: | |
| level: warning | |
| yamllint_flags: "-c .yamllint ." | |
| fail_on_error: true | |
| shell-lint: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: reviewdog/action-shellcheck@5ebd09ddbe2ebb471646ce234c6c8dd18663ca7c # v1.30.0 | |
| with: | |
| level: warning | |
| fail_on_error: true | |
| - uses: reviewdog/action-shfmt@d8f080930b9be5847b4f97e9f4122b81a82aaeac # v1.0.4 | |
| with: | |
| level: warning | |
| fail_on_error: true | |
| action-lint: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: reviewdog/action-actionlint@a5524e1c19e62881d79c1f1b9b6f09f16356e281 # v1.65.2 | |
| with: | |
| level: warning | |
| fail_on_error: true | |
| ansible-lint: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run ansible-lint | |
| uses: ansible/ansible-lint@e98f9b38769d45cbe3c55a23b2eb25631babe7c4 # v25.4.0 | |
| with: | |
| working_directory: "scripts/ansible" | |
| requirements_file: "requirements.yml" |