From 49659bbf5b5213c4d3c5ccadc70e1e299e110405 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 11:48:47 +0200 Subject: [PATCH] chore(deps): bump golang from 1.22 to 1.23 in the docker-deps group (#73) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore(deps): bump golang from 1.22 to 1.23 in the docker-deps group Bumps the docker-deps group with 1 update: golang. Updates `golang` from 1.22 to 1.23 --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker-deps ... Signed-off-by: dependabot[bot] * chore(ci/release): use Go version 1.23 Signed-off-by: Leon Steinhäuser <42437185+leonsteinhaeuser@users.noreply.github.com> * chore(ci/tests): use Go version 1.23 Signed-off-by: Leon Steinhäuser <42437185+leonsteinhaeuser@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] Signed-off-by: Leon Steinhäuser <42437185+leonsteinhaeuser@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Leon Steinhäuser <42437185+leonsteinhaeuser@users.noreply.github.com> --- .github/workflows/release.yaml | 2 +- .github/workflows/tests.yaml | 2 +- Dockerfile.dev | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 519f476..b37df0c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -6,7 +6,7 @@ on: - 'v*' env: - go_version: 1.22 + go_version: 1.23 jobs: release: diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index bf2b5d0..5d09105 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -21,7 +21,7 @@ on: - "!dependabot/**" env: - go_version: '1.22' + go_version: '1.23' artifact_name: kubernetes-namespace-permission-manager artifact_bin_name: kubebuilder IMG: tagesspiegel/kubernetes-namespace-permission-manager:dev diff --git a/Dockerfile.dev b/Dockerfile.dev index 8a0aea3..e45fafc 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,5 +1,5 @@ # Build the manager binary -FROM golang:1.22 as builder +FROM golang:1.23 as builder ARG TARGETOS ARG TARGETARCH