Browse Source

Remediate Scorecard Token-Permissions findings

This attempts to remediate the problems reported by Scorecard about Token-Permissions
mandlil-patch-2
mandlil 8 months ago
committed by GitHub
parent
commit
87af31847c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      .github/workflows/osv-scanner-unified.yml

+ 6
- 2
.github/workflows/osv-scanner-unified.yml View File

@ -26,13 +26,14 @@ on:
permissions:
# Required to upload SARIF file to CodeQL. See: https://github.com/github/codeql-action/issues/2117
actions: read
# Require writing security events to upload SARIF file to security tab
security-events: write
# Read commit contents
contents: read
jobs:
scan-scheduled:
permissions:
# Required for writing security events to upload SARIF file to security tab
security-events: write
if: ${{ github.event_name == 'push' || github.event_name == 'schedule' }}
# If you want to copy this config, highly suggest pinning this version to a release rather than tracking the main branch
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@8bd1ce1c4be9d98053ffd9e6e14585276a36762c" # v1.9.1
@ -43,6 +44,9 @@ jobs:
--skip-git
./
scan-pr:
permissions:
# Required for writing security events to upload SARIF file to security tab
security-events: write
if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }}
# If you want to copy this config, highly suggest pinning this version to a release rather than tracking the main branch
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@8bd1ce1c4be9d98053ffd9e6e14585276a36762c" # v1.9.1


Loading…
Cancel
Save