Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/cgo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,36 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}

poutine:
needs: [build, validate-yaml]
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}-poutine
cancel-in-progress: true
steps:
- name: Restore checkout
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: .
key: checkout-${{ github.sha }}
fail-on-cache-miss: true

- name: Download gh-aw binary
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
with:
name: gh-aw-linux-amd64

- name: Make gh-aw executable
run: chmod +x gh-aw

- name: Run poutine security scan on all workflows
run: ./gh-aw compile --poutine --verbose
env:
GH_TOKEN: ${{ github.token }}

build-wasm:
needs: [checkout-cache]
runs-on: ubuntu-latest
Expand Down Expand Up @@ -2583,6 +2613,7 @@ jobs:
- build
- build-wasm
- zizmor
- poutine
- bench
- check-validator-sizes
- lint-go
Expand Down