Skip to content

Bump golang.org/x/net from 0.15.0 to 0.17.0 #241

Bump golang.org/x/net from 0.15.0 to 0.17.0

Bump golang.org/x/net from 0.15.0 to 0.17.0 #241

Workflow file for this run

name: docker
on:
push:
branches:
- main
tags:
- v*
merge_group:
pull_request:
types:
- opened
- labeled
- synchronize
jobs:
docker:
name: Docker ${{ matrix.image }}
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
strategy:
matrix:
include:
- image: label-mutex
file: Dockerfile
- image: label-mutex-fake-gcs-server
file: Dockerfile.fake-gcs-server
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0
- uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0
- id: meta
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0
with:
images: ghcr.io/${{ github.repository_owner }}/${{ matrix.image }}
- uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
with:
pull: true
push: ${{ startsWith(github.ref, 'refs/tags/') || github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || contains(github.event.pull_request.labels.*.name, 'docker:pr-image') }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: ${{ matrix.file }}
cache-from: |
type=gha,scope=${{ matrix.image }}
cache-to: |
mode=max,type=gha,scope=${{ matrix.image }}