Skip to content

Bump actions/setup-go from 6.4.0 to 6.5.0 #189

Bump actions/setup-go from 6.4.0 to 6.5.0

Bump actions/setup-go from 6.4.0 to 6.5.0 #189

Workflow file for this run

name: GoSec
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
scan:
runs-on: ubuntu-latest
permissions:
# required for all workflows
security-events: write
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
- name: Security scan
shell: bash
run: |
if ! make gosec
then
echo "gosec scanner failed to run "
exit 1
fi
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
if: always()
with:
# Path to SARIF file relative to the root of the repository
sarif_file: gosec.sarif