From 049161e4cc52c27d42d979f895ad1f6cd3def2cd Mon Sep 17 00:00:00 2001 From: Marcin Romaszewicz Date: Thu, 9 Jul 2026 09:24:53 -0700 Subject: [PATCH] ci: exclude Go 1.24 from the test matrix This module is moving to echo v5, which requires Go 1.25+, so drop Go 1.24 from the shared workflow's default version matrix via the `excluding_versions` input, mirroring how the oapi-codegen repository handles its minimum Go version. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4c4256..26eb39e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,3 +10,5 @@ jobs: uses: oapi-codegen/actions/.github/workflows/ci.yml@6cf35d4f044f2663dae54547ff6d426e565beb48 # v0.6.0 with: lint_versions: '["1.25"]' + # The module requires Go 1.25+ (echo/v5), so exclude 1.24 from the default matrix. + excluding_versions: '["1.24"]'