Skip to content

build(deps): bump golang.org/x/oauth2 from 0.12.0 to 0.15.0 #70

build(deps): bump golang.org/x/oauth2 from 0.12.0 to 0.15.0

build(deps): bump golang.org/x/oauth2 from 0.12.0 to 0.15.0 #70

Workflow file for this run

name: Publish container images
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
jobs:
containers:
name: Build and push container image registries
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
if: startsWith(github.ref, 'refs/tags/v') || github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/${{ github.repository }}
- name: Build and push Docker images
uses: docker/build-push-action@v4
with:
push: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}