Skip to content

[chore] Bump github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2 (#165) #339

[chore] Bump github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2 (#165)

[chore] Bump github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2 (#165) #339

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.2
- name: Cache Go modules
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build
run: |
cd cmd/helmper/
go build
- name: Tests
run: |
go test -v ./...