From 98dfff22ba2cc53ce6ddfeb220c0a7a0ad746bb8 Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Fri, 16 Aug 2024 06:42:59 -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 9aea8795..48ae8b23 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"