From af7bb1e3148c151c5109d6a144273ff92d131298 Mon Sep 17 00:00:00 2001 From: Martin Weindel Date: Fri, 7 Jun 2024 09:14:55 +0200 Subject: [PATCH] golang v1.22.4 --- .ci/pipeline_definitions | 8 ++++---- Dockerfile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.ci/pipeline_definitions b/.ci/pipeline_definitions index 1e9aed7f..ab498df6 100644 --- a/.ci/pipeline_definitions +++ b/.ci/pipeline_definitions @@ -2,14 +2,14 @@ external-dns-management: base_definition: steps: build: - image: golang:1.22.2 + image: golang:1.22.4 output_dir: binary check: - image: golang:1.22.2 + image: golang:1.22.4 integrationtest: - image: golang:1.22.2 + image: golang:1.22.4 test: - image: golang:1.22.2 + image: golang:1.22.4 traits: publish: dockerimages: diff --git a/Dockerfile b/Dockerfile index 1cd9aa3e..02d1b92e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # SPDX-License-Identifier: Apache-2.0 ############# builder ############# -FROM golang:1.22.3 AS builder +FROM golang:1.22.4 AS builder WORKDIR /build