From d60644695464430ae40fc85c8a2b6408b1c2d1e1 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 8 Nov 2023 11:00:04 -0500 Subject: [PATCH] Unpin builder image Let's assume for now that our own builder image isn't going to break us. This is needed to unblock getting `git` in the image which we need for other things. At some point yes we can investigate renovate for this potentially but I'd rather say that we have decent CI around the builder image. --- .github/workflows/ci.yml | 2 +- .github/workflows/publish-image.yml | 2 +- .tekton/ostree-build.yaml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5524746..1d6856a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest container: - image: quay.io/centos-boot/builder:1.0.0@sha256:d5e7caf5fcb0e38b0311bff19e087c527f464173f6bebfa47b0506a31688197a + image: quay.io/centos-boot/builder:latest options: --privileged strategy: diff --git a/.github/workflows/publish-image.yml b/.github/workflows/publish-image.yml index dd97c0b..074774a 100644 --- a/.github/workflows/publish-image.yml +++ b/.github/workflows/publish-image.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest container: - image: quay.io/centos-boot/builder:1.0.0@sha256:d5e7caf5fcb0e38b0311bff19e087c527f464173f6bebfa47b0506a31688197a + image: quay.io/centos-boot/builder:latest options: --privileged strategy: diff --git a/.tekton/ostree-build.yaml b/.tekton/ostree-build.yaml index 0d8bf17..17b6215 100644 --- a/.tekton/ostree-build.yaml +++ b/.tekton/ostree-build.yaml @@ -206,7 +206,7 @@ spec: - name: PLATFORM value: linux/amd64 - name: BUILDER_IMAGE - value: quay.io/centos-boot/builder:1.0.0 + value: quay.io/centos-boot/builder:latest runAfter: - clone-repository taskRef: @@ -241,7 +241,7 @@ spec: - name: PLATFORM value: linux/arm64 - name: BUILDER_IMAGE - value: quay.io/centos-boot/builder:1.0.0 + value: quay.io/centos-boot/builder:latest runAfter: - clone-repository-arm64 taskRef: @@ -276,7 +276,7 @@ spec: - name: PLATFORM value: linux/s390x - name: BUILDER_IMAGE - value: quay.io/centos-boot/builder:1.0.0 + value: quay.io/centos-boot/builder:latest runAfter: - clone-repository-s390x taskRef: