This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
chore(deps): bump github.com/lestrrat-go/jwx/v2 from 2.0.12 to 2.0.18 #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check pull request | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 # ratchet:exclude | |
- name: Get go version | |
id: go_version | |
run: | | |
echo "GO_VERSION=$(grep golang .tool-versions | awk '{print $2}')" >> $GITHUB_OUTPUT | |
- uses: actions/setup-go@v4 # ratchet:exclude | |
with: | |
go-version: ${{ steps.go_version.outputs.GO_VERSION }} | |
- name: make check | |
run: make check | |
- name: make test | |
run: make test | |
- name: helm package | |
run: helm package ./charts/teams-backend --destination . | |
- name: docker build | |
uses: nais/platform-build-push-sign@main # ratchet:exclude | |
with: | |
name: teams-backend | |
push: false |