From f088a5c13ae1c8b55ed3bbc45c804685a5049067 Mon Sep 17 00:00:00 2001 From: web3-bot <81333946+web3-bot@users.noreply.github.com> Date: Sun, 22 Feb 2026 15:10:18 +0000 Subject: [PATCH 1/2] chore!: bump go.mod to Go 1.25 and run go fix BREAKING CHANGE: Updating the Go version to 1.25 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 7ed423c..adcf112 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/ipfs/ipfs-update -go 1.24 +go 1.25 require ( github.com/blang/semver/v4 v4.0.0 From 2ae076ffb34957aecb2a88735c6c530e336e66bc Mon Sep 17 00:00:00 2001 From: Piotr Galar Date: Sun, 22 Feb 2026 16:59:01 +0100 Subject: [PATCH 2/2] Update Go versions in sharness workflow --- .github/workflows/sharness.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sharness.yml b/.github/workflows/sharness.yml index ffcf3b2..b751cf9 100644 --- a/.github/workflows/sharness.yml +++ b/.github/workflows/sharness.yml @@ -5,7 +5,7 @@ jobs: strategy: fail-fast: false matrix: - go: [ "1.24.x", "1.25.x" ] + go: [ "1.25.x", "1.26.x" ] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4