From 365aa46762e4efa0363eca247568d3ee2dba6249 Mon Sep 17 00:00:00 2001 From: Thomas Ferrandiz Date: Tue, 9 Jan 2024 09:30:22 +0000 Subject: [PATCH] update to v0.6.3 and bump hardeneed-build-base --- .drone.yml | 12 ++++++------ Dockerfile | 4 ++-- Makefile | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.drone.yml b/.drone.yml index 98b369a..9de46ec 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.20.12b2 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.20.12b2 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.20.12b2 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.7b3 + image: rancher/hardened-build-base:v1.20.12b2 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.7b3 + image: rancher/hardened-build-base:v1.20.12b2 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.7b3 + image: rancher/hardened-build-base:v1.20.12b2 commands: - make DRONE_TAG=${DRONE_TAG} image-scan volumes: diff --git a/Dockerfile b/Dockerfile index 2b44cbc..ad470b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ 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.20.12b2 FROM ${BCI_IMAGE} as bci FROM ${GO_IMAGE} as builder ARG ARCH="amd64" -ARG TAG="v0.6.2" +ARG TAG="v0.6.3" ARG PKG="github.com/k8snetworkplumbingwg/whereabouts" ARG SRC="github.com/k8snetworkplumbingwg/whereabouts" RUN git clone --depth=1 https://${SRC}.git $GOPATH/src/${PKG} diff --git a/Makefile b/Makefile index db25a9b..8dfac65 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ BUILD_META=-build$(shell date +%Y%m%d) ORG ?= rancher PKG ?= github.com/k8snetworkplumbingwg/whereabouts SRC ?= github.com/k8snetworkplumbingwg/whereabouts -TAG ?= v0.6.2$(BUILD_META) +TAG ?= v0.6.3$(BUILD_META) ifneq ($(DRONE_TAG),) TAG := $(DRONE_TAG)