Skip to content

Bump golang.org/x/net from 0.26.0 to 0.33.0 #413

Bump golang.org/x/net from 0.26.0 to 0.33.0

Bump golang.org/x/net from 0.26.0 to 0.33.0 #413

Workflow file for this run

name: Container image
on:
push:
tags: ['*']
pull_request:
branches: [master]
jobs:
container-image:
name: Build and push
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/qbarrand/quba.fr
tags: |
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
- name: Check out the repo
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}