From 878ea364db85888ef0bd6f0136eccb366111dcc6 Mon Sep 17 00:00:00 2001 From: Michael Fritch Date: Thu, 11 Jul 2024 10:14:34 -0600 Subject: [PATCH] Bump to upstream version v0.16.1 UpdateCli is choosing release image based on latest chronological date instead of using the image tagged in github as the `latest` release. Replaces: https://github.com/rancher/image-build-node-feature-discovery/pull/35 Signed-off-by: Michael Fritch --- Dockerfile | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c8e9ab7..2c67ed6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN go-assert-boring.sh bin/* # Build node feature discovery ARG ARCH="amd64" -ARG TAG=v0.16.0 +ARG TAG=v0.16.1 ARG PKG="github.com/kubernetes-sigs/node-feature-discovery" RUN git clone --depth=1 https://${PKG}.git $GOPATH/src/${PKG} WORKDIR $GOPATH/src/${PKG} diff --git a/Makefile b/Makefile index 829d7d9..41b113f 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ SRC ?= "github.com/kubernetes-sigs/node-feature-discovery" TAG ?= ${GITHUB_ACTION_TAG} ifeq ($(TAG),) -TAG := v0.16.0$(BUILD_META) +TAG := v0.16.1$(BUILD_META) endif ifeq (,$(filter %$(BUILD_META),$(TAG)))