docker: bump jauderho/golang from 9d07aef
to d95ea7f
(#642)
#997
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Semgrep | |
on: | |
#pull_request: {} | |
push: | |
branches: | |
- main | |
- master | |
permissions: read-all | |
jobs: | |
semgrep: | |
name: Scan | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v1 | |
with: | |
egress-policy: block | |
disable-telemetry: true | |
allowed-endpoints: | |
github.com:443 | |
metrics.semgrep.dev:443 | |
semgrep.dev:443 | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v2 | |
- uses: returntocorp/semgrep-action@713efdd345f3035192eaa63f56867b88e63e4e5d # v1 | |
with: | |
publishToken: ${{ secrets.SEMGREP_APP_TOKEN }} |