Skip to content

Bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 (#262) #911

Bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 (#262)

Bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 (#262) #911

Workflow file for this run

name: Pre-Commit
on:
pull_request:
push:
branches: [ master ]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/setup-go@v4
with:
go-version: 1.23
- name: Install dependencies
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
go install github.com/kisielk/errcheck@latest
go install mvdan.cc/gofumpt@latest
go install github.com/daixiang0/gci@latest
- uses: pre-commit/[email protected]
with:
extra_args: --all-files