From f063f64526be228a09873173a6864ced842ac63c Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Tue, 20 Feb 2024 06:10:13 -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 --- .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 8b259b25..7494e29f 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 ad630bfe..492395da 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