From 411c96d1e2ccb591d76efbb454004a4f7c8f2e45 Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Fri, 16 Aug 2024 06:21:13 -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 9e06fba..65b6b8c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -112,8 +112,8 @@ updates: ignore: - dependency-name: "golang" versions: - - ">= 1.22" - - "< 1.21" + - ">= 1.23.0" + - "< 1.22.0" - package-ecosystem: docker directory: "/dependabot/docker/go"