From e8483309b22cd4e4b73879191ca9cc06b0300077 Mon Sep 17 00:00:00 2001 From: Julien Guitton Date: Thu, 16 May 2024 10:58:55 +0200 Subject: [PATCH 1/2] Upgrade GO 1.22.3 --- .circleci/config.yml | 2 +- Dockerfile | 2 +- Makefile | 2 +- go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5e38bc4c8f..b6e8faa369 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -31,7 +31,7 @@ orbs: executors: operator-build: docker: - - image: ghcr.io/konpyutaika/docker-images/nifikop-build:1.22.2 + - image: ghcr.io/konpyutaika/docker-images/nifikop-build:1.22.3 # Define jobs list jobs: # Build job, which build operator docker image (with operator-sdk build) diff --git a/Dockerfile b/Dockerfile index df68e7dd91..7f4a5b9484 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM golang:1.22.2 as builder +FROM golang:1.22.3 as builder WORKDIR /workspace diff --git a/Makefile b/Makefile index dc43f1d273..183a74c81d 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ DOCKER_REGISTRY_BASE ?= ghcr.io/konpyutaika/docker-images IMAGE_TAG ?= $(shell git describe --tags --abbrev=0 --match '[0-9].*[0-9].*[0-9]' 2>/dev/null) IMAGE_NAME ?= $(SERVICE_NAME) BUILD_IMAGE ?= ghcr.io/konpyutaika/docker-images/nifikop-build -GOLANG_VERSION ?= 1.22.2 +GOLANG_VERSION ?= 1.22.3 IMAGE_TAG_BASE ?= / OS = $(shell go env GOOS) ARCH = $(shell go env GOARCH) diff --git a/go.mod b/go.mod index 23216d060b..bb3811e2c2 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/konpyutaika/nifikop -go 1.22.2 +go 1.22.3 require ( emperror.dev/errors v0.8.1 From 3cd27df7860fce4650e4584fc1f288709ae366ed Mon Sep 17 00:00:00 2001 From: Julien Guitton Date: Thu, 16 May 2024 10:59:51 +0200 Subject: [PATCH 2/2] Update CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc978b4e1b..f6d88ee89d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ - [PR #393](https://github.com/konpyutaika/nifikop/pull/393) - **[Operator/NifiCluster]** Added support to let users configure `seccompProfile` and `securityContext`. - [PR #421](https://github.com/konpyutaika/nifikop/pull/421) - **[Documentation]** Upgrade node 22.0.0. - [PR #422](https://github.com/konpyutaika/nifikop/pull/422) - **[NiGoApi]** Upgrade NiGoApi to v0.1.0. +- [PR #425](https://github.com/konpyutaika/nifikop/pull/425) - **[Operator]** Upgrade golang to 1.22.3. ### Fixed Bugs