Skip to content

SEC-090: Automated trusted workflow pinning (2023-10-30) #31

SEC-090: Automated trusted workflow pinning (2023-10-30)

SEC-090: Automated trusted workflow pinning (2023-10-30) #31

---
name: Validate Examples
permissions:
contents: read
pull-requests: read
on:
pull_request:
types: ['opened', 'synchronize']
paths:
- '.github/workflows/validate-examples.yaml'
- 'examples/**'
concurrency:
group: 'examples-${{ github.head_ref }}'
cancel-in-progress: true
jobs:
validate-examples:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version-file: ./.go-version
- run: bash scripts/gogetcookie.sh
- run: make tools
- run: make validate-examples
save-artifacts-on-fail:
if: ${{ needs.validate-examples.result }} == 'failure'
uses: ./.github/workflows/save-artifacts.yaml