workflows/actionlint: run zizmor

Port of Homebrew/homebrew-core#195961.

See https://github.com/woodruffw/zizmor.
This commit is contained in:
Carlo Cabrera 2024-10-30 08:51:56 +08:00
parent 0e24ee2c08
commit dbe271a597
No known key found for this signature in database
GPG Key ID: C74D447FC549A1D0

View File

@ -26,10 +26,12 @@ concurrency:
group: "actionlint-${{ github.ref }}" group: "actionlint-${{ github.ref }}"
cancel-in-progress: ${{ github.event_name == 'pull_request' }} cancel-in-progress: ${{ github.event_name == 'pull_request' }}
permissions: {}
jobs: jobs:
workflow_syntax: workflow_syntax:
if: github.repository_owner == 'Homebrew' if: github.repository_owner == 'Homebrew'
runs-on: ubuntu-22.04 runs-on: ubuntu-latest
steps: steps:
- name: Set up Homebrew - name: Set up Homebrew
id: setup-homebrew id: setup-homebrew
@ -39,12 +41,13 @@ jobs:
cask: false cask: false
test-bot: false test-bot: false
- name: Set up actionlint - name: Install tools
run: brew install actionlint shellcheck zizmor
- name: Set up GITHUB_WORKSPACE
env: env:
HOMEBREW_REPOSITORY: ${{ steps.setup-homebrew.outputs.repository-path }} HOMEBREW_REPOSITORY: ${{ steps.setup-homebrew.outputs.repository-path }}
run: | run: |
brew install actionlint shellcheck
# Annotations work only relative to GITHUB_WORKSPACE # Annotations work only relative to GITHUB_WORKSPACE
(shopt -s dotglob; rm -rf "${GITHUB_WORKSPACE:?}"/*; mv "${HOMEBREW_REPOSITORY:?}"/* "$GITHUB_WORKSPACE") (shopt -s dotglob; rm -rf "${GITHUB_WORKSPACE:?}"/*; mv "${HOMEBREW_REPOSITORY:?}"/* "$GITHUB_WORKSPACE")
rmdir "$HOMEBREW_REPOSITORY" rmdir "$HOMEBREW_REPOSITORY"
@ -52,4 +55,31 @@ jobs:
echo "::add-matcher::.github/actionlint-matcher.json" echo "::add-matcher::.github/actionlint-matcher.json"
- run: zizmor --format sarif . >results.sarif
- name: Upload SARIF file
uses: actions/upload-artifact@v4
with:
name: results.sarif
path: results.sarif
- run: actionlint - 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