From a2f5d857d429290f4e0a11e911b8b6b41daeaa4a Mon Sep 17 00:00:00 2001 From: "red-hat-konflux[bot]" <126015336+red-hat-konflux[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 08:05:48 +0000 Subject: [PATCH 1/2] chore(deps): update registry.access.redhat.com/ubi9/go-toolset docker tag to v1.21.11-9 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 e4b92f4..c93270f 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.1724661022 AS builder +FROM registry.access.redhat.com/ubi9/go-toolset:1.21.11-9 AS builder WORKDIR /opt/app-root/src COPY --chown=default:root . . RUN go build -o /opt/app-root/build/ ./cmd/... From 1f2419f952056a721ebd7f3a6c4d448b00cea59e Mon Sep 17 00:00:00 2001 From: Barak Korren Date: Wed, 4 Sep 2024 13:04:09 +0300 Subject: [PATCH 2/2] chore: Align go-toolset again 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 08c628b..a1c93bf 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.1724661022 + image: registry.access.redhat.com/ubi9/go-toolset:1.21.11-9 steps: - name: Checkout code uses: actions/checkout@v4