Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

build(deps): bump github.com/lestrrat-go/jwx/v2 from 2.0.19 to 2.0.20 #925

build(deps): bump github.com/lestrrat-go/jwx/v2 from 2.0.19 to 2.0.20

build(deps): bump github.com/lestrrat-go/jwx/v2 from 2.0.19 to 2.0.20 #925

Workflow file for this run

name: Multilinters
on:
push:
paths:
- "**.go"
- "go.*"
jobs:
build:
name: Check code
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.21"]
steps:
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Run golangci-lint
uses: golangci/[email protected]
with:
version: v1.55.2
args: --timeout 5m -E bodyclose,gocritic,gofmt,gosec,govet,nestif,nlreturn,revive,rowserrcheck --exclude G401,G501,G107