From 503c746f25dd940fc49db13adce5b835550af53b Mon Sep 17 00:00:00 2001 From: Jay Jijie Chen <1180092+jijiechen@users.noreply.github.com> Date: Wed, 23 Oct 2024 09:33:05 +0800 Subject: [PATCH] ci(.github): use latest version of ubuntu runner image to build kuma-init image (#11826) ## Motivation Restore the changes we'd done to work around these issues: * https://github.com/kumahq/kuma/issues/11804 ## Implementation information Use `ubuntu-latest` runner images. I'm creating the PR from the same repo to maintain parity between runs here and those of master branches. --------- Signed-off-by: Jay Chen <1180092+jijiechen@users.noreply.github.com> --- .github/workflows/_build_publish.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/_build_publish.yaml b/.github/workflows/_build_publish.yaml index b6e8f4386402..fad7bcb957a2 100644 --- a/.github/workflows/_build_publish.yaml +++ b/.github/workflows/_build_publish.yaml @@ -88,7 +88,7 @@ jobs: run: | make publish/pulp build-images: - runs-on: ubuntu-22.04 # pining to this version until https://github.com/actions/runner-images/issues/10636#issuecomment-2397720931 has a better solution + runs-on: ubuntu-latest timeout-minutes: 30 strategy: fail-fast: false @@ -196,6 +196,7 @@ jobs: digest-images: needs: [build-images] runs-on: ubuntu-latest + if: ${{ fromJSON(inputs.ALLOW_PUSH) }} outputs: DIGESTS: ${{ steps.compute-digests.outputs.digests }} steps: