From 7359a17d47a590e1e1318ece675b7043e6afe56e Mon Sep 17 00:00:00 2001 From: Michael Fritch Date: Mon, 25 Mar 2024 05:42:18 -0600 Subject: [PATCH] Update to v2.7.0 Also update base image to v1.21.8b1 Signed-off-by: Michael Fritch --- .drone.yml | 12 ++++++------ Dockerfile | 4 ++-- Makefile | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.drone.yml b/.drone.yml index 1412416..58108bc 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,7 +10,7 @@ platform: steps: - name: build pull: always - image: rancher/hardened-build-base:v1.20.7b3 + image: rancher/hardened-build-base:v1.21.8b1 commands: - make DRONE_TAG=${DRONE_TAG} volumes: @@ -18,7 +18,7 @@ steps: path: /var/run/docker.sock - name: publish - image: rancher/hardened-build-base:v1.20.7b3 + image: rancher/hardened-build-base:v1.21.8b1 commands: - docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD - make DRONE_TAG=${DRONE_TAG} image-push @@ -35,7 +35,7 @@ steps: - tag - name: scan - image: rancher/hardened-build-base:v1.20.7b3 + image: rancher/hardened-build-base:v1.21.8b1 commands: - make DRONE_TAG=${DRONE_TAG} image-scan volumes: @@ -59,7 +59,7 @@ platform: steps: - name: build pull: always - image: rancher/hardened-build-base:v1.20.4b11 + image: rancher/hardened-build-base:v1.21.8b1 commands: - make DRONE_TAG=${DRONE_TAG} volumes: @@ -67,7 +67,7 @@ steps: path: /var/run/docker.sock - name: publish - image: rancher/hardened-build-base:v1.20.4b11 + image: rancher/hardened-build-base:v1.21.8b1 commands: - docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD - make DRONE_TAG=${DRONE_TAG} image-push @@ -84,7 +84,7 @@ steps: - tag - name: scan - image: rancher/hardened-build-base:v1.20.4b11 + image: rancher/hardened-build-base:v1.21.8b1 commands: - make DRONE_TAG=${DRONE_TAG} image-scan volumes: diff --git a/Dockerfile b/Dockerfile index f786591..df1561c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -ARG TAG="2.6.3" +ARG TAG="2.7.0" ARG BCI_IMAGE=registry.suse.com/bci/bci-base -ARG GO_IMAGE=rancher/hardened-build-base:v1.20.7b3 +ARG GO_IMAGE=rancher/hardened-build-base:v1.21.8b1 # Build the project FROM ${GO_IMAGE} as builder diff --git a/Makefile b/Makefile index a2511dc..96df9d7 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ endif BUILD_META=-build$(shell date +%Y%m%d) ORG ?= rancher -TAG ?= v2.6.3$(BUILD_META) +TAG ?= v2.7.0$(BUILD_META) ifneq ($(DRONE_TAG),) TAG := $(DRONE_TAG)