From ed3e43cfb46bd06e3e5831000d6691920696af6c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 07:57:14 +0200 Subject: [PATCH] Bump coredns version to v1.11.1 (#59) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: Bump to latest coredns version in Dockerfile Made with ❤️️ by updatecli * chore: Bump to latest coredns version in README Made with ❤️️ by updatecli * chore: Bump to latest coredns version in Makefile Made with ❤️️ by updatecli --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- Dockerfile | 2 +- Makefile | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 79ec14e..03dc6d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ FROM --platform=$BUILDPLATFORM base-builder as coredns-builder ARG SRC=github.com/coredns/coredns ARG PKG=github.com/coredns/coredns ARG ARCH -ARG TAG=v1.11.3 +ARG TAG=v1.11.1 RUN git clone --depth=1 https://${SRC}.git $GOPATH/src/${PKG} WORKDIR $GOPATH/src/${PKG} RUN git fetch --all --tags --prune diff --git a/Makefile b/Makefile index 0c9ad18..4ca23fe 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ TAG ?= ${GITHUB_ACTION_TAG} export DOCKER_BUILDKIT?=1 ifeq ($(TAG),) -TAG := v1.11.3$(BUILD_META) +TAG := v1.11.1$(BUILD_META) endif ifeq (,$(filter %$(BUILD_META),$(TAG))) diff --git a/README.md b/README.md index 6b7f679..9b5f9d0 100644 --- a/README.md +++ b/README.md @@ -3,5 +3,5 @@ ## Build ```sh -TAG=v1.11.3 make +TAG=v1.11.1 make ```