From 52f7d80535d2833b0847ff5b0104a6c3b161f313 Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Fri, 16 Aug 2024 06:27:17 -0500 Subject: [PATCH] Update project to Go 1.22 series Update Dependabot configuration for Dockerfile to ignore Go releases outside of the Go 1.22 release series. We update previous match syntax to use x.y.Z syntax (vs just x.Y) in an effort to exclude future offerings of Go RC versions as a stable update. 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). --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7a6bbc5a..a857a295 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -110,8 +110,8 @@ updates: ignore: - dependency-name: "golang" versions: - - ">= 1.22" - - "< 1.21" + - ">= 1.23.0" + - "< 1.22.0" - package-ecosystem: docker directory: "/dependabot/docker/go"