From 29d4b886cd3bb4101020135d4650012ff91c15be Mon Sep 17 00:00:00 2001 From: Brandon Palm Date: Wed, 4 Dec 2024 03:46:00 -0600 Subject: [PATCH] Update Go to v1.23.4 (#153) --- .github/workflows/pre-main.yaml | 2 +- .github/workflows/release.yaml | 2 +- certsuite-sidecar/Dockerfile | 2 +- go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pre-main.yaml b/.github/workflows/pre-main.yaml index eb13274..4593db5 100644 --- a/.github/workflows/pre-main.yaml +++ b/.github/workflows/pre-main.yaml @@ -21,7 +21,7 @@ jobs: - name: Set up Go 1.23 uses: actions/setup-go@v5 with: - go-version: 1.23.3 + go-version: 1.23.4 - name: Disable default go problem matcher run: echo "::remove-matcher owner=go::" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c6ecc2d..2ec9d84 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -64,7 +64,7 @@ jobs: - name: Set up Go 1.23 uses: actions/setup-go@v5 with: - go-version: 1.23.3 + go-version: 1.23.4 - name: Disable default go problem matcher run: echo "::remove-matcher owner=go::" diff --git a/certsuite-sidecar/Dockerfile b/certsuite-sidecar/Dockerfile index 87ee465..008dd93 100644 --- a/certsuite-sidecar/Dockerfile +++ b/certsuite-sidecar/Dockerfile @@ -16,7 +16,7 @@ RUN \ # Install Go binary and set the PATH ENV \ GO_DL_URL=https://golang.org/dl \ - GO_BIN_TAR=go1.23.3.linux-amd64.tar.gz \ + GO_BIN_TAR=go1.23.4.linux-amd64.tar.gz \ GOPATH=/root/go ENV GO_BIN_URL_x86_64=${GO_DL_URL}/${GO_BIN_TAR} RUN \ diff --git a/go.mod b/go.mod index 9b628b6..4a3cf0c 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/redhat-best-practices-for-k8s/certsuite-operator -go 1.23.3 +go 1.23.4 require ( github.com/go-logr/logr v1.4.2