🌱 Bump osv scanner workflow to v1.8.5 #27
Workflow file for this run
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
# This file is adapted from https://github.com/google/osv-scanner | |
name: OSV-Scanner Scan | |
on: | |
# this is for test only | |
pull_request: | |
branches: [ '**' ] | |
schedule: | |
- cron: "12 12 * * 1" | |
# Restrict jobs in this workflow to have no permissions by default; permissions | |
# should be granted per job as needed using a dedicated `permissions` block | |
permissions: {} | |
jobs: | |
scan-scheduled: | |
permissions: | |
actions: read | |
contents: read # to fetch code (actions/checkout) | |
security-events: write # for uploading SARIF files | |
if: ${{ github.repository == 'metal3-io/ip-address-manager' && github.event_name == 'schedule' }} | |
uses: google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v1.8.5 # v1.8.5 |