diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 3044c638..06798196 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -7,7 +7,7 @@ on: - main env: - GO_VERSION: '1.21' + GO_VERSION: '1.23' GO_REQUIRED_MIN_VERSION: '' permissions: diff --git a/.tekton/integration-test.yaml b/.tekton/integration-test.yaml index e4b4210a..14768c33 100644 --- a/.tekton/integration-test.yaml +++ b/.tekton/integration-test.yaml @@ -48,7 +48,7 @@ spec: dnf -y install jq git make # Install golang with a given version - export GOVERSION=1.22.5 + export GOVERSION=1.23.4 curl -O -J https://dl.google.com/go/go$GOVERSION.linux-amd64.tar.gz rm -rf /usr/local/go && tar -C /usr/local -xzf go$GOVERSION.linux-amd64.tar.gz diff --git a/.tekton/unit-test.yaml b/.tekton/unit-test.yaml index f906c228..ddf7ba48 100644 --- a/.tekton/unit-test.yaml +++ b/.tekton/unit-test.yaml @@ -48,7 +48,7 @@ spec: dnf -y install jq git make # Install golang with a given version - export GOVERSION=1.22.5 + export GOVERSION=1.23.4 curl -O -J https://dl.google.com/go/go$GOVERSION.linux-amd64.tar.gz rm -rf /usr/local/go && tar -C /usr/local -xzf go$GOVERSION.linux-amd64.tar.gz diff --git a/Containerfile.rhtap b/Containerfile.rhtap index 8d4a14c4..7a9ff2a3 100755 --- a/Containerfile.rhtap +++ b/Containerfile.rhtap @@ -1,4 +1,4 @@ -FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_1.22 AS builder +FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_1.23 AS builder ENV SOURCE_DIR=/maestro WORKDIR $SOURCE_DIR diff --git a/Dockerfile b/Dockerfile index be014a8d..e65d52ca 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22 AS builder +FROM golang:1.23 AS builder ENV SOURCE_DIR=/maestro WORKDIR $SOURCE_DIR diff --git a/Makefile b/Makefile index c90c7813..2b718d0d 100755 --- a/Makefile +++ b/Makefile @@ -135,7 +135,7 @@ help: # Encourage consistent tool versions OPENAPI_GENERATOR_VERSION:=5.4.0 -GO_VERSION:=go1.22. +GO_VERSION:=go1.23. ### Constants: version:=$(shell date +%s) diff --git a/go.mod b/go.mod index a1c31e8d..33e91c35 100755 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/openshift-online/maestro -go 1.22.5 +go 1.23.4 require ( github.com/Azure/azure-sdk-for-go/sdk/azcore v1.12.0 diff --git a/pr_check.sh b/pr_check.sh index 98899c3f..eca80e8b 100755 --- a/pr_check.sh +++ b/pr_check.sh @@ -18,7 +18,7 @@ function cleanUp { } trap cleanUp EXIT -test -f go1.22.5.linux-amd64.tar.gz || curl -O -J https://dl.google.com/go/go1.22.5.linux-amd64.tar.gz +test -f go1.23.4.linux-amd64.tar.gz || curl -O -J https://dl.google.com/go/go1.23.4.linux-amd64.tar.gz podman build -t "$IMAGE_NAME" -f Dockerfile.test .