Skip to content

Commit bf71701

Browse files
committed
fix: Align Go versions in CI and go.mod
- Restored Go 1.24.1 in go.mod (valid in 2025) - Updated GitHub Actions workflow to use Go 1.24 - Ran make tidy to ensure dependencies are up-to-date This ensures the CI pipeline uses the same Go version as the project itself.
1 parent 8e249ea commit bf71701

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/makefile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@v4
1818
with:
19-
go-version: '1.20'
19+
go-version: '1.24'
2020

2121
- name: Install dependencies
2222
run: make tidy

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module mcp-subfinder-server
22

3-
go 1.21
4-
5-
toolchain go1.24.1
3+
go 1.24.1
64

75
require (
86
github.com/json-iterator/go v1.1.12

0 commit comments

Comments
 (0)