Skip to content

Bump github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2 #663

Bump github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2

Bump github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2 #663

Workflow file for this run

---
name: test & lint
on:
push:
pull_request:
jobs:
code-lint:
name: code-lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
args: --timeout=5m
version: latest
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run go tests and generate coverage report
run: make unit-test