Skip to content

Bump github.com/polyfloyd/go-errorlint from 1.4.8 to 1.5.0 #173

Bump github.com/polyfloyd/go-errorlint from 1.4.8 to 1.5.0

Bump github.com/polyfloyd/go-errorlint from 1.4.8 to 1.5.0 #173

Workflow file for this run

name: Semgrep
on:
push:
branches:
- main
permissions: read-all
jobs:
semgrep:
name: Semgrep
runs-on: ubuntu-22.04
permissions:
security-events: write # To upload SARIF results
container:
image: returntocorp/semgrep
steps:
- name: Checkout repository
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: Perform Semgrep analysis
run: semgrep ci --sarif --output semgrep.sarif
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
- name: Upload Semgrep report to GitHub
uses: github/codeql-action/upload-sarif@d39d31e687223d841ef683f52467bd88e9b21c14 # v3.25.3
if: ${{ failure() || success() }}
with:
sarif_file: semgrep.sarif