Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions .github/workflows/execution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: [ '1.23' ]
go: [ "1.25" ]
os: [ubuntu-latest, windows-latest]
steps:
- name: Set git to use LF
Expand All @@ -45,18 +45,21 @@ jobs:
lint:
name: Linters
runs-on: ubuntu-latest
strategy:
matrix:
go: [ "1.25" ]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go 1.23
uses: actions/setup-go@v4
uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: 1.23
go-version: ^${{ matrix.go }}
- name: Run linters
Comment thread
coderabbitai[bot] marked this conversation as resolved.
uses: golangci/golangci-lint-action@v8.0.0
with:
working-directory: execution
version: v2.3.1
version: v2.4.0
args: --timeout=3m
ci:
name: CI Success
Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: [ '1.23' ]
go: [ "1.25" ]
os: [ubuntu-latest, windows-latest]
steps:
- name: Set git to use LF
Expand All @@ -49,18 +49,21 @@ jobs:
lint:
name: Linters
runs-on: ubuntu-latest
strategy:
matrix:
go: [ "1.25" ]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go 1.23
uses: actions/setup-go@v4
uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: 1.23
go-version: ^${{ matrix.go }}
- name: Run linters
Comment thread
coderabbitai[bot] marked this conversation as resolved.
uses: golangci/golangci-lint-action@v8.0.0
with:
working-directory: v2
version: v2.3.1
version: v2.4.0
args: --timeout=3m
ci:
name: CI Success
Expand Down
2 changes: 1 addition & 1 deletion examples/federation/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/wundergraph/graphql-go-tools/examples/federation

go 1.23.0
go 1.25

require (
github.com/99designs/gqlgen v0.17.45
Expand Down
1 change: 1 addition & 0 deletions examples/federation/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWN
github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk=
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/sebdah/goldie/v2 v2.7.1 h1:PkBHymaYdtvEkZV7TmyqKxdmn5/Vcj+8TpATWZjnG5E=
github.com/sebdah/goldie/v2 v2.7.1/go.mod h1:oZ9fp0+se1eapSRjfYbsV/0Hqhbuu3bJVvKI/NNtssI=
github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM=
github.com/sergi/go-diff v1.3.1 h1:xkr+Oxo4BOQKmkn/B9eMK0g5Kg/983T9DqqPHwYqD+8=
github.com/sergi/go-diff v1.3.1/go.mod h1:aMJSSKb2lpPvRNec0+w3fl7LP9IOFzdc9Pa4NFbPK1I=
Expand Down
2 changes: 1 addition & 1 deletion execution/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/wundergraph/graphql-go-tools/execution

go 1.23.0
go 1.25

require (
github.com/99designs/gqlgen v0.17.45
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/wundergraph/graphql-go-tools

go 1.23.0
go 1.25

require (
github.com/99designs/gqlgen v0.17.45
Expand Down
4 changes: 2 additions & 2 deletions go.work
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
go 1.23.0
go 1.25

toolchain go1.23.3
toolchain go1.25

use (
// v1
Expand Down
2 changes: 1 addition & 1 deletion v2/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/wundergraph/graphql-go-tools/v2

go 1.23.0
go 1.25

require (
github.com/99designs/gqlgen v0.17.45
Expand Down
Loading