8000 Upgrade golang to 1.23.6 by juldrixx · Pull Request #511 · konpyutaika/nifikop · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Upgrade golang to 1.23.6 #511

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ orbs:
executors:
operator-build:
docker:
- image: ghcr.io/konpyutaika/docker-images/nifikop-build:1.23.4
- image: ghcr.io/konpyutaika/docker-images/nifikop-build:1.23.6
# Define jobs list
jobs:
# Build job, which build operator docker image (with operator-sdk build)
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### Changed

- [PR #511](https://github.com/konpyutaika/nifikop/pull/511) - **[Operator]** Upgrade golang to 1.23.6.

### Fixed Bugs

### Deprecated
Expand All @@ -21,7 +23,7 @@

- [PR #476](https://github.com/konpyutaika/nifikop/pull/476) - **[Operator/NifiCluster]** Move Zookeeper connectivity check from init container to main container.
- [PR #491](https://github.com/konpyutaika/nifikop/pull/491) - **[Helm Chart]** Added default namespace to configuration replacements.
- [PR #501](https://github.com/konpyutaika/nifikop/pull/501) - **[Operator]** Upgrade golang to 1.23.3.
- [PR #501](https://github.com/konpyutaika/nifikop/pull/501) - **[Operator]** Upgrade golang to 1.23.4.
- [PR #502](https://github.com/konpyutaika/nifikop/pull/502) - **[NiGoApi]** Upgrade NiGoApi to v0.1.5.
- [PR #504](https://github.com/konpyutaika/nifikop/pull/504) - **[Documentation]** Upgrade dependencies.
10000
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.23.4 AS builder
FROM golang:1.23.6 AS builder

WORKDIR /workspace

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.23.4
GOLANG_VERSION ?= 1.23.6
IMAGE_TAG_BASE ?= <registry>/<operator name>
OS = $(shell go env GOOS)
ARCH = $(shell go env GOARCH)
Expand Down
2 changes: 1 addition & 1 deletion docker/build-image/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG GOLANG_VERSION
ARG GOLANG_VERSION=latest

FROM docker AS docker-base
COPY --from=docker/buildx-bin:latest /buildx /usr/libexec/docker/cli-plugins/docker-buildx
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/konpyutaika/nifikop

go 1.23.4
go 1.23.6

require (
emperror.dev/errors v0.8.1
Expand Down
0