From d758e90c9d8f2f75047d3005beea84252b599a18 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Thu, 6 Mar 2025 15:27:28 -0500 Subject: [PATCH] ci: Update unit test workflow to use Go 1.x instead of 1.23 - Removed Go 1.23 from the GitHub Actions test matrix. - Retained only "1" to always fetch the latest stable Go 1.x version. - This ensures compatibility with stable branches, which use older Go versions where dependencies in `go.mod` may not be compatible with the latest Go releases. This change helps maintain stability across branches while allowing tests to run with an appropriate Go version. --- .github/workflows/unit.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/unit.yaml b/.github/workflows/unit.yaml index 1489ec0e35..c8405e69ec 100644 --- a/.github/workflows/unit.yaml +++ b/.github/workflows/unit.yaml @@ -13,7 +13,6 @@ jobs: fail-fast: false matrix: go-version: - - "1.23.0" - "1" steps: