From 8a4ed3e31af088e6ba56949e0c08811a8fa65d56 Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Wed, 21 Feb 2024 06:09:36 -0600 Subject: [PATCH] Update project to Go 1.21 series - update Dependabot configuration for Dockerfile to ignore Go releases outside of the Go 1.21 release series - update "Canary" Dockerfile to reflect one release back from latest release in Go 1.21 series - confirm that Dependabot configuration changes are working as intended NOTE: We intentionally do *not* update the Go module version; bumping the Go module version would indicate that this project *requires* a newer Go version for functionality provided by that version and that is not yet the case. Refs: - atc0005/todo#71 --- .github/dependabot.yml | 4 ++-- dependabot/docker/go/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5406026..81a736f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -111,8 +111,8 @@ updates: ignore: - dependency-name: "golang" versions: - - ">= 1.21" - - "< 1.20" + - ">= 1.22" + - "< 1.21" - package-ecosystem: docker directory: "/dependabot/docker/go" diff --git a/dependabot/docker/go/Dockerfile b/dependabot/docker/go/Dockerfile index 7c12765..d7e11c0 100644 --- a/dependabot/docker/go/Dockerfile +++ b/dependabot/docker/go/Dockerfile @@ -15,4 +15,4 @@ # binaries) to reflect that version of Go. # https://hub.docker.com/_/golang -FROM golang:1.20.14 +FROM golang:1.21.6