Skip to content

Commit 42f17aa

Browse files
Update minor-and-patch
1 parent 0477d1c commit 42f17aa

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Set up Go
3838
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
3939
with:
40-
go-version: "1.25.7"
40+
go-version: "1.26.1"
4141
- run: go install go.uber.org/mock/mockgen@latest
4242

4343
- name: Download dependencies
@@ -70,7 +70,7 @@ jobs:
7070
- name: Set up Go
7171
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
7272
with:
73-
go-version: "1.25.7"
73+
go-version: "1.26.1"
7474

7575
- name: Download dependencies
7676
run: go mod download
@@ -102,7 +102,7 @@ jobs:
102102
- name: Set up Go
103103
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
104104
with:
105-
go-version: "1.25.7"
105+
go-version: "1.26.1"
106106

107107
- name: Download dependencies
108108
run: go mod download
@@ -129,7 +129,7 @@ jobs:
129129
- name: Set up Go
130130
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
131131
with:
132-
go-version: "1.25.7"
132+
go-version: "1.26.1"
133133

134134
- name: Download dependencies
135135
run: go mod download
@@ -161,7 +161,7 @@ jobs:
161161
- name: Set up Go
162162
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
163163
with:
164-
go-version: "1.25.7"
164+
go-version: "1.26.1"
165165

166166
- name: Download dependencies
167167
run: go mod download

.github/workflows/licence-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fetch-depth: 0
1919
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
2020
with:
21-
go-version: "1.25.7"
21+
go-version: "1.26.1"
2222
- name: Install addlicense
2323
run: go install github.com/google/addlicense@b289835c0741ba2fb92dd5f61af070e79c69a55e # v1.2
2424
- name: Run addlicense

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Builder stage
2-
FROM golang:1.25-alpine@sha256:f6751d823c26342f9506c03797d2527668d095b0a15f1862cddb4d927a7a4ced AS builder
2+
FROM golang:1.26-alpine@sha256:2389ebfa5b7f43eeafbd6be0c3700cc46690ef842ad962f6c5bd6be49ed82039 AS builder
33

44
LABEL io.modelcontextprotocol.server.name="io.github.neo4j/mcp"
55

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.25.3
44

55
require (
66
github.com/google/uuid v1.6.0
7-
github.com/mark3labs/mcp-go v0.43.2
7+
github.com/mark3labs/mcp-go v0.45.0
88
github.com/neo4j/neo4j-go-driver/v6 v6.0.0
99
github.com/stretchr/testify v1.11.1
1010
github.com/testcontainers/testcontainers-go v0.40.0

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ github.com/mailru/easyjson v0.9.1 h1:LbtsOm5WAswyWbvTEOqhypdPeZzHavpZx96/n553mR8
7272
github.com/mailru/easyjson v0.9.1/go.mod h1:1+xMtQp2MRNVL/V1bOzuP3aP8VNwRW55fQUto+XFtTU=
7373
github.com/mark3labs/mcp-go v0.43.2 h1:21PUSlWWiSbUPQwXIJ5WKlETixpFpq+WBpbMGDSVy/I=
7474
github.com/mark3labs/mcp-go v0.43.2/go.mod h1:YnJfOL382MIWDx1kMY+2zsRHU/q78dBg9aFb8W6Thdw=
75+
github.com/mark3labs/mcp-go v0.45.0 h1:s0S8qR/9fWaQ3pHxz7pm1uQ0DrswoSnRIxKIjbiQtkc=
76+
github.com/mark3labs/mcp-go v0.45.0/go.mod h1:YnJfOL382MIWDx1kMY+2zsRHU/q78dBg9aFb8W6Thdw=
7577
github.com/moby/docker-image-spec v1.3.1 h1:jMKff3w6PgbfSa69GfNg+zN/XLhfXJGnEx3Nl2EsFP0=
7678
github.com/moby/docker-image-spec v1.3.1/go.mod h1:eKmb5VW8vQEh/BAr2yvVNvuiJuY6UIocYsFu/DxxRpo=
7779
github.com/moby/go-archive v0.1.0 h1:Kk/5rdW/g+H8NHdJW2gsXyZ7UnzvJNOy6VKJqueWdcQ=

0 commit comments

Comments
 (0)