From 6a49a4a6e6a5b244aa557564da73117f2e6b8068 Mon Sep 17 00:00:00 2001 From: Louis Royer Date: Thu, 24 Oct 2024 12:09:31 +0200 Subject: [PATCH] Update to srv6@v0.0.21 and srv6-ctrl@v0.0.17 --- srv6-ctrl/Dockerfile | 2 +- srv6/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/srv6-ctrl/Dockerfile b/srv6-ctrl/Dockerfile index cfe0161..4379f6a 100644 --- a/srv6-ctrl/Dockerfile +++ b/srv6-ctrl/Dockerfile @@ -4,7 +4,7 @@ # SPDX-License-Identifier: MIT FROM golang:1.22 AS builder -ARG COMMIT=v0.0.16 +ARG COMMIT=v0.0.17 RUN : ${COMMIT:? Missing build-arg COMMIT.} && go install github.com/nextmn/srv6-ctrl@${COMMIT} diff --git a/srv6/Dockerfile b/srv6/Dockerfile index d9a7511..30ca075 100644 --- a/srv6/Dockerfile +++ b/srv6/Dockerfile @@ -4,7 +4,7 @@ # SPDX-License-Identifier: MIT FROM golang:1.22 AS builder -ARG COMMIT=v0.0.20 +ARG COMMIT=v0.0.21 RUN : ${COMMIT:? Missing build-arg COMMIT.} && go install github.com/nextmn/srv6@${COMMIT} \ && find /go/pkg/mod/github.com/nextmn -iname 'srv6@*' -type d -exec ln -s {} /configuration \;