Skip to content

Commit 2ec9da6

Browse files
nsegaclaude
andauthored
Upgrade Go version to 1.25.4 (#6)
* Upgrade Go version to 1.25.4 Update go.mod and GitHub Actions workflow to use Go 1.25.4 across all jobs and matrix configurations. * Remove Go 1.24 support from CI workflow Remove matrix strategy and test only against Go 1.25.4. This simplifies the workflow since we're now only supporting a single Go version. * Use matrix strategy with Go 1.25 only Keep the matrix strategy but configure it to test against only Go 1.25, removing Go 1.24 support. --------- Co-authored-by: Claude <noreply@anthropic.com>
1 parent c8575c0 commit 2ec9da6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
go-version: ['1.24', '1.25']
15+
go-version: ['1.25']
1616

1717
steps:
1818
- name: Check out code
@@ -47,7 +47,6 @@ jobs:
4747
run: go test -v -race -coverprofile=coverage.out -covermode=atomic ./...
4848

4949
- name: Upload coverage to Codecov
50-
if: matrix.go-version == '1.25'
5150
uses: codecov/codecov-action@v4
5251
with:
5352
files: ./coverage.out
@@ -58,7 +57,6 @@ jobs:
5857
run: go vet ./...
5958

6059
- name: Run staticcheck
61-
if: matrix.go-version == '1.25'
6260
run: |
6361
go install honnef.co/go/tools/cmd/staticcheck@latest
6462
staticcheck ./...

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/nsega/mcp-obsidian
22

3-
go 1.24.7
3+
go 1.25.4
44

55
require github.com/modelcontextprotocol/go-sdk v1.1.0
66

0 commit comments

Comments
 (0)