Skip to content

Commit 0bbe5b8

Browse files
committed
upgrading go to fix CVE-2024-45336
Signed-off-by: Daniel Dowler <[email protected]>
1 parent 0487d73 commit 0bbe5b8

8 files changed

+8
-8
lines changed

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Build arguments
1616
ARG SOURCE_CODE=.
1717

18-
FROM registry.access.redhat.com/ubi8/go-toolset:1.21 as builder
18+
FROM registry.access.redhat.com/ubi8/go-toolset:1.22 as builder
1919

2020
USER root
2121
# Downloading Argo CLI so that the samples are validated

backend/Dockerfile.cacheserver

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
# Dockerfile for building the source code of cache_server
16-
FROM golang:1.21.7-alpine3.19 as builder
16+
FROM golang:1.22.12-alpine3.19 as builder
1717

1818
RUN apk update && apk upgrade && \
1919
apk add --no-cache bash git openssh gcc musl-dev

backend/Dockerfile.conformance

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
# Dockerfile for building the source code of conformance tests
16-
FROM golang:1.21.7-alpine3.19 as builder
16+
FROM golang:1.22.12-alpine3.19 as builder
1717

1818
RUN apk update && apk upgrade && \
1919
apk add --no-cache bash git openssh gcc musl-dev

backend/Dockerfile.driver

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
ARG SOURCE_CODE=.
1717

1818
# Use ubi8/nodejs-14 as base image
19-
FROM registry.access.redhat.com/ubi8/go-toolset:1.21 as builder
19+
FROM registry.access.redhat.com/ubi8/go-toolset:1.22 as builder
2020

2121

2222
## Build args to be used at this step

backend/Dockerfile.launcher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ARG CI_CONTAINER_VERSION="unknown"
1818

1919

2020
# Use ubi8/nodejs-14 as base image
21-
FROM registry.access.redhat.com/ubi8/go-toolset:1.21 as builder
21+
FROM registry.access.redhat.com/ubi8/go-toolset:1.22 as builder
2222

2323

2424
## Build args to be used at this step

backend/Dockerfile.persistenceagent

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ARG CI_CONTAINER_VERSION="unknown"
1818

1919

2020
# Use ubi8/go-toolset as base image
21-
FROM registry.access.redhat.com/ubi8/go-toolset:1.21 as builder
21+
FROM registry.access.redhat.com/ubi8/go-toolset:1.22 as builder
2222

2323
## Build args to be used at this step
2424
ARG SOURCE_CODE

backend/Dockerfile.scheduledworkflow

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
ARG SOURCE_CODE=.
1717

1818
# Use ubi8/nodejs-14 as base image
19-
FROM registry.access.redhat.com/ubi8/go-toolset:1.21 as builder
19+
FROM registry.access.redhat.com/ubi8/go-toolset:1.22 as builder
2020

2121
## Build args to be used at this step
2222
ARG SOURCE_CODE

backend/Dockerfile.viewercontroller

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.21.7-alpine3.19 as builder
15+
FROM golang:1.22.12-alpine3.19 as builder
1616

1717
RUN apk update && apk upgrade
1818
RUN apk add --no-cache git gcc musl-dev

0 commit comments

Comments
 (0)