-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add and sync actionlint workflow #198
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
# This file is synced from the `.github` repository, do not modify it directly. | ||
name: Workflow Syntax | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can this have Actionlint in the name so it better matches the filename? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
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 | ||
steps: | ||
- name: Set up Homebrew | ||
id: setup-homebrew | ||
uses: Homebrew/actions/setup-homebrew@master | ||
with: | ||
core: false | ||
cask: false | ||
test-bot: false | ||
|
||
- name: Install tools | ||
run: brew install actionlint shellcheck zizmor | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually, I just double checked:
|
||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
|
||
- 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: echo "::add-matcher::$(brew --repository)/.github/actionlint-matcher.json" | ||
|
||
- run: actionlint | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should ignore the matrix.container error to avoid failures in homebrew-portable-ruby and actions. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Pushed fixes to avoid the error instead of ignoring it -- adding |
||
|
||
upload_sarif: | ||
needs: workflow_syntax | ||
# We want to always upload this even if `actionlint` failed. | ||
if: always() && !contains(fromJSON('[["cancelled", "skipped"]]'), needs.workflow_syntax.result) | ||
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's custom in the actionlint workflow for these two?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They reuse the clones made by
setup-homebrew
(andhomebrew-core
hascore: true
there). Thebrew
workflow also runs on changes to.github/actionlint.yaml
(which is different from.github/workflows/actionlint.yml
).homebrew-core
has some handling forshell: /bin/bash
.