build(deps): bump google/osv-scanner-action from f8115f2f28022984d4e8070d2f0f85abcf6f3458 to 764c91816374ff2d8fc2095dab36eecd42d61638 #5945
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
name: License Scan | |
on: | |
pull_request: | |
branches: | |
- "main" | |
push: | |
branches: | |
- "main" | |
permissions: | |
contents: read | |
jobs: | |
scan: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Run scanner | |
uses: google/osv-scanner-action/osv-scanner-action@764c91816374ff2d8fc2095dab36eecd42d61638 # v1.9.2 | |
continue-on-error: true # remove this after https://github.com/google/deps.dev/issues/146 has been resolved | |
with: | |
scan-args: |- | |
--skip-git | |
--experimental-licenses=Apache-2.0,BSD-2-Clause,BSD-2-Clause-FreeBSD,BSD-3-Clause,MIT,ISC,Python-2.0,PostgreSQL,X11,Zlib | |
--config tools/osv-scanner/license-scan-config.toml | |
./ |