Skip to content

Bump github.com/lestrrat-go/jwx from 1.2.26 to 1.2.28 #347

Bump github.com/lestrrat-go/jwx from 1.2.26 to 1.2.28

Bump github.com/lestrrat-go/jwx from 1.2.26 to 1.2.28 #347

Workflow file for this run

name: "Workflow Dispatch"
on:
pull_request:
types:
- opened
- edited
- closed
- reopened
- synchronize
push:
tags:
- '*'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
call-lint:
name: "Lint"
uses: ./.github/workflows/lint.yml
secrets: inherit
call-build:
name: "Build"
needs: call-lint
uses: ./.github/workflows/build.yml
secrets: inherit
call-test:
name: "Tests"
needs: call-build
uses: ./.github/workflows/test.yml
secrets: inherit
call-release:
name: "Release"
needs: call-test
if: ${{ github.ref_type == 'tag' }}
uses: ./.github/workflows/release.yml
secrets: inherit