feat: update @stats-forge/github-stats-forge-core to 0.4 (#12)
#7
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: GitHub Actions Audit | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/**/* | |
| - action.yml | |
| pull_request: | |
| paths: | |
| - .github/**/* | |
| - action.yml | |
| permissions: {} | |
| concurrency: | |
| group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}' | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| zizmor: | |
| name: zizmor | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| permissions: | |
| security-events: write # required to upload SARIF results to GitHub Code Scanning | |
| contents: read # required to check out the repository | |
| actions: read # required by zizmor to read workflow runs | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Run zizmor | |
| uses: zizmorcore/zizmor-action@70fb788f84895a7701f5643d103d587e460b5c99 # v0.6.3 |