cloudflare/pint
Publicmirrored from https://github.com/cloudflare/pintAvailable
.github/workflows/deps.yml
30lines · modecode
| 1 | name: "Dependency Review" |
| 2 | on: [pull_request] |
| 3 | |
| 4 | permissions: read-all |
| 5 | |
| 6 | jobs: |
| 7 | dependency-review: |
| 8 | runs-on: ubuntu-latest |
| 9 | steps: |
| 10 | - name: "Checkout Repository" |
| 11 | uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 |
| 12 | with: |
| 13 | show-progress: false |
| 14 | |
| 15 | - name: "Dependency Review" |
| 16 | uses: actions/dependency-review-action@40c09b7dc99638e5ddb0bfd91c1673effc064d8a # v4.8.1 |
| 17 | |
| 18 | govulncheck: |
| 19 | runs-on: ubuntu-latest |
| 20 | steps: |
| 21 | - name: "Checkout Repository" |
| 22 | uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 |
| 23 | with: |
| 24 | show-progress: false |
| 25 | |
| 26 | - id: govulncheck |
| 27 | uses: golang/govulncheck-action@b625fbe08f3bccbe446d94fbf87fcc875a4f50ee # v1.0.4 |
| 28 | with: |
| 29 | go-version-input: stable |
| 30 | check-latest: true |
| 31 | |