Skip to content

chore(deps)(deps): bump github.com/golang-jwt/jwt/v5 from 5.2.2 to 5.2.3 #786

chore(deps)(deps): bump github.com/golang-jwt/jwt/v5 from 5.2.2 to 5.2.3

chore(deps)(deps): bump github.com/golang-jwt/jwt/v5 from 5.2.2 to 5.2.3 #786

Workflow file for this run

name: check-code
on:
push:
paths-ignore:
- '**.md'
- 'docs/**'
pull_request:
paths-ignore:
- '**.md'
- 'docs/**'
permissions:
contents: read
jobs:
build:
name: Check
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: 'go.mod'
- name: licensecheck
run: make licensecheck
- name: vet
run: make vet
- name: static
run: make static
- name: test
run: make test
- name: tags
run: make tagverify
- name: No VCD references
run: |
set +e
grep --exclude-dir=.git -ERin "Director|VCD|ources\/tm|labelTm|vcd_tm" . | grep -Eiv "VCDClient|.log:|govcdClient|vcdClient|GOVCD_|govcd.|/director/|directory|github|go-vcloud-director|Directories|Version|VCDHREF|VCDToken"
if [ "$?" -eq 0 ]; then echo "ERROR: Found some VCD references"; exit 1; else exit 0; fi