Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

build(deps): bump github.com/alexflint/go-arg from 1.4.3 to 1.5.1 #1756

build(deps): bump github.com/alexflint/go-arg from 1.4.3 to 1.5.1

build(deps): bump github.com/alexflint/go-arg from 1.4.3 to 1.5.1 #1756

Workflow file for this run

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