build(deps): Bump actions/upload-artifact from 4.0.0 to 4.3.0 (#116) #240
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
--- | |
# This workflow uses actions that are not certified by GitHub. They are provided | |
# by a third-party and are governed by separate terms of service, privacy | |
# policy, and support documentation. | |
name: Gosec | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
gosec_job: | |
runs-on: ubuntu-latest | |
name: Scan for vulns | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1 | |
with: | |
egress-policy: audit | |
- name: Checkout Source | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Run Gosec Security Scanner | |
uses: securego/gosec@55d79496019a560e16e73e1948dee20a1fad631a # v2.18.2 | |
with: | |
args: -fmt sarif -out results.sarif ./... | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@0b21cf2492b6b02c465a3e5d7c473717ad7721ba # v3.23.1 | |
with: | |
# Path to SARIF file relative to the root of the repository | |
sarif_file: results.sarif |