Skip to content

chore(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 in /tools #4549

chore(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 in /tools

chore(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 in /tools #4549

Workflow file for this run

name: Compiling
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
# Compile on supported OSes
compile:
strategy:
matrix:
platform:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.22.x
- name: Add GOBIN to PATH
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
- name: Checkout code
uses: actions/checkout@v4
- name: Compile
run: make compile-only