workflows/actionlint: run zizmor
#1412
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: actionlint | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '.github/workflows/*.ya?ml' | |
pull_request: | |
paths: | |
- '.github/workflows/*.ya?ml' | |
defaults: | |
run: | |
shell: bash -xeuo pipefail {0} | |
concurrency: | |
group: "actionlint-${{ github.ref }}" | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
env: | |
HOMEBREW_DEVELOPER: 1 | |
HOMEBREW_NO_AUTO_UPDATE: 1 | |
HOMEBREW_NO_ENV_HINTS: 1 | |
jobs: | |
workflow_syntax: | |
if: github.repository_owner == 'Homebrew' | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/homebrew/ubuntu22.04:master | |
steps: | |
- name: Set up Homebrew | |
id: setup-homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
with: | |
core: true | |
cask: false | |
test-bot: false | |
- name: Set up actionlint | |
env: | |
HOMEBREW_TAP_REPOSITORY: ${{ steps.setup-homebrew.outputs.repository-path }} | |
run: | | |
brew install actionlint shellcheck | |
# Annotations work only relative to GITHUB_WORKSPACE | |
(shopt -s dotglob; rm -rf "${GITHUB_WORKSPACE:?}"/*; mv "${HOMEBREW_TAP_REPOSITORY:?}"/* "$GITHUB_WORKSPACE") | |
rmdir "$HOMEBREW_TAP_REPOSITORY" | |
ln -vs "$GITHUB_WORKSPACE" "$HOMEBREW_TAP_REPOSITORY" | |
# Setting `shell: /bin/bash` prevents shellcheck from running on | |
# those steps, so let's change them to `shell: bash` for linting. | |
sed -i 's|shell: /bin/bash -x|shell: bash -x|' .github/workflows/*.y*ml | |
# The JSON matcher needs to be accessible to the container host. | |
cp "$(brew --repository)/.github/actionlint-matcher.json" "$HOME" | |
echo "::add-matcher::$HOME/actionlint-matcher.json" | |
- run: actionlint | |
zizmor: | |
if: github.repository_owner == 'Homebrew' | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/homebrew/ubuntu22.04:master | |
steps: | |
- name: Set up Homebrew | |
id: setup-homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
with: | |
core: true | |
cask: false | |
test-bot: false | |
- name: Install zizmor | |
run: brew install zizmor | |
- name: Run zizmor | |
run: zizmor --format sarif "${HOMEBREW_TAP_REPOSITORY}" | tee results.sarif | |
env: | |
HOMEBREW_TAP_REPOSITORY: ${{ steps.setup-homebrew.outputs.repository-path }} | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: results.sarif | |
category: zizmor |