Skip to content

fix(deps): update k8s.io/utils digest to 6fe5fd8 (#348) #986

fix(deps): update k8s.io/utils digest to 6fe5fd8 (#348)

fix(deps): update k8s.io/utils digest to 6fe5fd8 (#348) #986

Workflow file for this run

name: docker
on:
push:
branches:
- main
paths:
- .github/workflows/docker.yaml
- Dockerfile
- go.*
- cmd/**
- api/**
- internal/**
tags:
- v*
pull_request:
paths:
- .github/workflows/docker.yaml
- Dockerfile
- go.*
- cmd/**
- api/**
- internal/**
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
id: metadata
with:
images: ghcr.io/${{ github.repository }}
- uses: int128/docker-build-cache-config-action@34bb1b5886d06c161bf0dd9e169f03a52ff858fb # v1.35.0
id: cache
with:
image: ghcr.io/${{ github.repository }}/cache
- uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
- uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
id: build
with:
push: true
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
cache-from: ${{ steps.cache.outputs.cache-from }}
cache-to: ${{ steps.cache.outputs.cache-to }}
platforms: linux/amd64,linux/arm64
e2e-test:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- run: make -C e2e_test cluster
- uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
id: metadata
with:
images: ghcr.io/${{ github.repository }}
# set outputs.tags to single tag
flavor: latest=false
- uses: int128/wait-for-docker-image-action@4975bd239c55b16ec86bbcca9cab53ac056f8e07 # v1.8.0
with:
tags: ${{ steps.metadata.outputs.tags }}
- run: make -C e2e_test deploy
env:
CONTROLLER_IMAGE: ${{ steps.metadata.outputs.tags }}
- run: make -C e2e_test test
- run: make -C e2e_test logs-controller
if: always()