Skip to content

Bump github.com/coreos/go-oidc/v3 from 3.6.0 to 3.9.0 #410

Bump github.com/coreos/go-oidc/v3 from 3.6.0 to 3.9.0

Bump github.com/coreos/go-oidc/v3 from 3.6.0 to 3.9.0 #410

Workflow file for this run

name: main
on:
push:
workflow_dispatch:
# pull_request:
concurrency:
group: ${{ github.ref }}
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
- name: Run tests
shell: bash
run: |
go test ./...
docker:
runs-on: ubuntu-latest
needs:
- lint-test
steps:
- uses: actions/checkout@v4
- name: Login to Docker registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v5
with:
push: ${{ github.actor == 'weisdd' }}
tags: ${{ steps.meta.outputs.tags }}
build-args: |
COMMIT=${{ github.sha }}
VERSION=${{ steps.meta.outputs.version }}