This repository has been archived by the owner on Aug 27, 2024. It is now read-only.
chore(deps): bump github.com/l50/goutils from 1.3.0 to 1.3.1 #240
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: 🚨 Semgrep Analysis | |
on: | |
push: | |
pull_request: | |
jobs: | |
semgrep: | |
name: Evaluate code for vulnerabilities | |
runs-on: ubuntu-latest | |
# Skip any PR created by dependabot to avoid permission issues | |
if: (github.actor != 'dependabot[bot]') | |
steps: | |
- name: Set up git repository | |
uses: actions/checkout@v3 | |
- uses: returntocorp/semgrep-action@v1 | |
with: | |
config: >- # more at semgrep.dev/explore | |
p/security-audit | |
p/secrets | |
p/golang |