Merge pull request #196032 from Homebrew/sarif-fix-again #1422
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 | |
permissions: {} | |
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: Install tools | |
run: brew install actionlint shellcheck zizmor | |
- name: Set up GITHUB_WORKSPACE | |
env: | |
HOMEBREW_TAP_REPOSITORY: ${{ steps.setup-homebrew.outputs.repository-path }} | |
run: | | |
# 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" | |
- run: zizmor --format sarif . >results.sarif | |
- name: Upload SARIF file | |
uses: actions/upload-artifact@v4 | |
with: | |
name: results.sarif | |
path: results.sarif | |
- name: Set up actionlint | |
run: | | |
# 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 | |
upload_sarif: | |
needs: workflow_syntax | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
security-events: write | |
steps: | |
- name: Download SARIF file | |
uses: actions/download-artifact@v4 | |
with: | |
name: results.sarif | |
path: results.sarif | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: results.sarif | |
category: zizmor |