This repository was archived by the owner on Aug 28, 2024. It is now read-only.
build(deps): bump github.com/prometheus/client_golang #1716
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: "Security Scan" | |
on: | |
push: | |
schedule: | |
- cron: '0 0 * * 0' # every Sunday 00:00 UTC | |
jobs: | |
gosec: | |
permissions: write-all | |
runs-on: ubuntu-latest | |
# Skip any created PR or push by dependabot to avoid permission issues | |
if: github.actor != 'dependabot[bot]' | |
env: | |
GO111MODULE: on | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v4 | |
- name: Run Gosec Security Scanner | |
uses: securego/[email protected] | |
with: | |
# we let the report trigger content trigger a failure using the GitHub Security features. | |
args: '-no-fail -fmt sarif -out results.sarif ./...' | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
# Path to SARIF file relative to the root of the repository | |
sarif_file: results.sarif |