Skip to content

Remove our branch from scorecard push trigger as it only fires on mas… #38

Remove our branch from scorecard push trigger as it only fires on mas…

Remove our branch from scorecard push trigger as it only fires on mas… #38

Workflow file for this run

name: govulncheck
on:
push:
branches:
- master
- RA-8661_apply_updates_from_google
pull_request:
branches:
- master
- RA-8661_apply_updates_from_google
permissions:
contents: read
jobs:
govulncheck_job:
runs-on: ubuntu-latest
name: Run govulncheck
steps:
- name: Generate token
id: generate_token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ secrets.CT_APP_ID }}
private-key: ${{ secrets.CT_APP_PRIVATE_KEY }}
owner: digicert
repositories: ctutils
- name: Authenticate with private ctutils
run: |
git config --global url."https://x-access-token:${{ steps.generate_token.outputs.token }}@github.com/".insteadOf "https://github.com/"
- id: govulncheck
uses: golang/govulncheck-action@b625fbe08f3bccbe446d94fbf87fcc875a4f50ee # v1.0.4
with:
go-version-file: go.mod
go-package: ./...