From b62f3785fb9aee3b598abc8a62e700eaeec53e4e Mon Sep 17 00:00:00 2001 From: "red-hat-konflux[bot]" <126015336+red-hat-konflux[bot]@users.noreply.github.com> Date: Wed, 28 Aug 2024 10:36:41 +0000 Subject: [PATCH 1/2] chore(deps): update registry.access.redhat.com/ubi9/go-toolset docker tag to v1.21.11-7.1724661022 Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 85c94df..e4b92f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # First stage: Build the Go binaries -FROM registry.access.redhat.com/ubi9/go-toolset:1.21.11-7 AS builder +FROM registry.access.redhat.com/ubi9/go-toolset:1.21.11-7.1724661022 AS builder WORKDIR /opt/app-root/src COPY --chown=default:root . . RUN go build -o /opt/app-root/build/ ./cmd/... From 55fecbf1a7341127b7cc183093149fb5a57bdde9 Mon Sep 17 00:00:00 2001 From: Barak Korren Date: Mon, 2 Sep 2024 10:22:20 +0300 Subject: [PATCH 2/2] chore: Once more, align Go toolset Signed-off-by: Barak Korren --- .github/workflows/unit_tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index 63bd072..08c628b 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -10,7 +10,7 @@ jobs: go-test: runs-on: ubuntu-latest container: - image: registry.access.redhat.com/ubi9/go-toolset:1.21.11-7 + image: registry.access.redhat.com/ubi9/go-toolset:1.21.11-7.1724661022 steps: - name: Checkout code uses: actions/checkout@v4