Skip to content

Bump github.com/lestrrat-go/jwx/v2 from 2.0.15 to 2.0.18 #59

Bump github.com/lestrrat-go/jwx/v2 from 2.0.15 to 2.0.18

Bump github.com/lestrrat-go/jwx/v2 from 2.0.15 to 2.0.18 #59

Workflow file for this run

name: "gosec"
# Run workflow each time code is pushed to your repository and on a schedule.
# The scheduled workflow runs every at 00:00 on Sunday UTC time.
on:
push:
jobs:
tests:
runs-on: ubuntu-latest
permissions:
security-events: write
env:
GO111MODULE: on
steps:
- name: Checkout Source
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Run Gosec Security Scanner
uses: securego/gosec@0ec6cd95d7bf02aef4ec2786e884868e0044875b # v2.18.1
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@49abf0ba24d0b7953cb586944e918a0b92074c80 # v2.22.4
with:
# Path to SARIF file relative to the root of the repository
sarif_file: results.sarif