Skip to content

fix: resolve cron scheduler goroutine leak and modernize usage #1121

fix: resolve cron scheduler goroutine leak and modernize usage

fix: resolve cron scheduler goroutine leak and modernize usage #1121

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# A sample workflow which sets up periodic OSV-Scanner scanning for vulnerabilities,
# in addition to a PR check which fails if new vulnerabilities are introduced.
#
# For more examples and options, including how to ignore specific vulnerabilities,
# see https://google.github.io/osv-scanner/github-action/
name: OSV-Scanner
permissions: {}
on:
pull_request:
branches: ["main"]
merge_group:
branches: ["main"]
schedule:
- cron: "17 23 * * 3"
push:
branches: ["main"]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
scan-scheduled:
if: ${{ github.event_name == 'push' || github.event_name == 'schedule' }}
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@c5996e0193a3df57d695c1b8a1dec2a4c62e8730" # v2.3.3
permissions:
actions: read # Needed for analysis of GitHub Actions workflows
contents: read # To clone and analyze the code
security-events: write # To upload the analysis results
scan-pr:
if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }}
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@c5996e0193a3df57d695c1b8a1dec2a4c62e8730" # v2.3.3
permissions:
actions: read # Needed for analysis of GitHub Actions workflows
contents: read # To clone and analyze the code
security-events: write # To upload the analysis results