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