From 3e78c029cb3b29fafc044d06d4282bc74be862fb Mon Sep 17 00:00:00 2001 From: Andrea Grandi Date: Sat, 7 Mar 2026 12:58:43 +0100 Subject: [PATCH 1/2] ci: add Go 1.24 and 1.25 to build matrix --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d1942d0..3bf30d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - go-version: ['1.26.1'] + go-version: ['1.24', '1.25', '1.26.1'] steps: - name: Checkout code @@ -60,7 +60,7 @@ jobs: strategy: matrix: - go-version: ['1.26.1'] + go-version: ['1.24', '1.25', '1.26.1'] steps: - name: Checkout code From e33587d1a4ca1c2c344278f2f75a33135a8db1b3 Mon Sep 17 00:00:00 2001 From: Andrea Grandi Date: Sat, 7 Mar 2026 13:06:06 +0100 Subject: [PATCH 2/2] ci: lower go.mod minimum version to 1.24 for multi-version support --- go.mod | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index d39d632..134b9a5 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,8 @@ module github.com/andreagrandi/mb-cli -go 1.26.1 +go 1.24 + +toolchain go1.26.1 require github.com/spf13/cobra v1.10.2