From db7e3c1da8d58a5d492325dc12b72055a95ce572 Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Sun, 24 Sep 2023 23:09:18 -0400 Subject: [PATCH] port to go 1.21.x Signed-off-by: Alex Goodman --- .github/actions/bootstrap/action.yaml | 2 +- go.mod | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/actions/bootstrap/action.yaml b/.github/actions/bootstrap/action.yaml index 694f857..f00dfc1 100644 --- a/.github/actions/bootstrap/action.yaml +++ b/.github/actions/bootstrap/action.yaml @@ -4,7 +4,7 @@ inputs: go-version: description: "Go version to install" required: true - default: "1.20.x" + default: "1.21.x" use-go-cache: description: "Restore go cache" required: true diff --git a/go.mod b/go.mod index f03d629..fc96773 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/anchore/binny -go 1.21.0 - -toolchain go1.21.1 +go 1.21.1 require ( github.com/Masterminds/semver/v3 v3.2.1