From 31cdf1adc0c14086a677f6a02525534163c9c76f Mon Sep 17 00:00:00 2001 From: Weston Steimel Date: Fri, 17 Jan 2025 10:12:13 +0000 Subject: [PATCH] chore(ci): bootstrap oras for use in ci Signed-off-by: Weston Steimel --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index a3738979..96a62046 100644 --- a/Makefile +++ b/Makefile @@ -25,6 +25,7 @@ CHRONICLE_VERSION = v0.8.0 GORELEASER_VERSION = v1.26.2 CRANE_VERSION=v0.16.1 GLOW_VERSION := v1.5.0 +ORAS_VERSION := v1.2.2 # Formatting variables ################################# BOLD := $(shell tput -T linux bold) @@ -115,6 +116,7 @@ bootstrap-tools: $(TEMP_DIR) GOBIN="$(abspath $(TEMP_DIR))" go install github.com/google/go-containerregistry/cmd/crane@$(CRANE_VERSION) GOBIN="$(realpath $(TEMP_DIR))" go install github.com/charmbracelet/glow@$(GLOW_VERSION) GOBIN="$(realpath $(TEMP_DIR))" go install github.com/rinchsan/gosimports/cmd/gosimports@$(GOSIMPORTS_VERSION) + GOBIN="$(realpath $(TEMP_DIR))" go install oras.land/oras/cmd/oras@$(ORAS_VERSION) .PHONY: bootstrap-go bootstrap-go: