git » spf » commit 687a1f1

go: Bump minimum supported version to 1.25

author Alberto Bertogli
2026-08-17 19:41:12 UTC
committer Alberto Bertogli
2026-08-17 19:41:12 UTC
parent 541dee7040ae1f0ba690e25ec1767ab79e9eb4b1

go: Bump minimum supported version to 1.25

This commit bumps the minimum supported Go version to 1.25.

Go 1.25 was released 2025-08-12, a year ago by now, and a lot of changes
have happened since the previous minimum of 1.15.

This is in preparation for some upcoming changes, e.g. update the fuzz
testing to modern tooling.

.github/workflows/tests.yaml +1 -1
go.mod +1 -1

diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml
index f663c3a..ec8c4b6 100644
--- a/.github/workflows/tests.yaml
+++ b/.github/workflows/tests.yaml
@@ -16,7 +16,7 @@ jobs:
     strategy:
       matrix:
         # Oldest supported version, and latest.
-        go-version: [ '1.15.x', '1.x' ]
+        go-version: [ '1.25.x', '1.x' ]
     steps:
       - uses: actions/checkout@v3
       - uses: actions/setup-go@v3
diff --git a/go.mod b/go.mod
index 42e7962..6f572de 100644
--- a/go.mod
+++ b/go.mod
@@ -1,5 +1,5 @@
 module blitiri.com.ar/go/spf
 
-go 1.15
+go 1.25
 
 require gopkg.in/yaml.v3 v3.0.1