chore(deps): bump actions/attest-build-provenance from 3.0.0 to 3.1.0 #328
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: actionlint | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: ["main"] | |
| paths: | |
| - ".github/workflows/**" | |
| schedule: | |
| - cron: "0 0 * * *" | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| permissions: | |
| contents: read | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: aquaproj/aqua-installer@9ebf656952a20c45a5d66606f083ff34f58b8ce0 # v4.0.0 | |
| with: | |
| aqua_version: v2.43.1 | |
| # github workflows/action's Static Checker | |
| - name: Run actionlint | |
| run: actionlint -color -oneline | |
| # checkout's persist-credentials: false checker | |
| - name: Run ghalint | |
| run: ghalint run | |
| # # A static analysis tool for GitHub Actions | |
| # - name: Run zizmor | |
| # run: docker run -t -v .:/github ghcr.io/woodruffw/zizmor:1.5.2 /github --min-severity medium |