From f241a7c41b2ef0b0be1b6bd88dc3e6a4440e77af Mon Sep 17 00:00:00 2001 From: Francesco Romani Date: Thu, 14 Nov 2024 11:03:09 +0100 Subject: [PATCH] [KNI] build: ghactions: bump builder to 1.23 bump golang builder images and versions to 1.23 Signed-off-by: Francesco Romani --- .github/workflows/ci.yaml | 2 +- .github/workflows/release.yaml | 2 +- build/noderesourcetopology-plugin/Dockerfile | 2 +- build/noderesourcetopology-plugin/Dockerfile.tools | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 423f61ee3..40c81103e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -47,7 +47,7 @@ jobs: - name: Set up golang uses: actions/setup-go@v3 with: - go-version: 1.22 + go-version: 1.23 - name: Run integration test run: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8e3645cda..813d2a485 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -26,7 +26,7 @@ jobs: uses: actions/setup-go@v3 id: go with: - go-version: 1.22 + go-version: 1.23 - name: Set release version env var run: | diff --git a/build/noderesourcetopology-plugin/Dockerfile b/build/noderesourcetopology-plugin/Dockerfile index 4c436e013..e1533946b 100644 --- a/build/noderesourcetopology-plugin/Dockerfile +++ b/build/noderesourcetopology-plugin/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.22 as builder +FROM golang:1.23 as builder WORKDIR /go/src/sigs.k8s.io/scheduler-plugins COPY . . diff --git a/build/noderesourcetopology-plugin/Dockerfile.tools b/build/noderesourcetopology-plugin/Dockerfile.tools index 658518592..cd2ea341a 100644 --- a/build/noderesourcetopology-plugin/Dockerfile.tools +++ b/build/noderesourcetopology-plugin/Dockerfile.tools @@ -2,7 +2,7 @@ FROM registry.access.redhat.com/ubi9/ubi ENV HOME=/home/ci ENV GOROOT=/usr/local/go -ENV GOVERSION=1.22.2 +ENV GOVERSION=1.23.2 ENV GOPATH=/go ENV GOBIN=${GOPATH}/bin ENV PATH=${PATH}:${GOROOT}/bin:${GOBIN}