Skip to content

Commit 09d8321

Browse files
Copilotintel352
andauthored
Fix Go version compatibility issues in examples CI workflow (#17)
* Initial plan * Fix Go version compatibility across all examples Co-authored-by: intel352 <77607+intel352@users.noreply.github.com> * Final fix: ensure all examples consistently use Go 1.23.0 Co-authored-by: intel352 <77607+intel352@users.noreply.github.com> * Run go mod tidy on all examples to clean up dependencies Co-authored-by: intel352 <77607+intel352@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: intel352 <77607+intel352@users.noreply.github.com>
1 parent 7d2a960 commit 09d8321

6 files changed

Lines changed: 9 additions & 3 deletions

File tree

examples/advanced-logging/go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ module advanced-logging
22

33
go 1.24.2
44

5+
toolchain go1.24.4
6+
57
require (
68
github.com/GoCodeAlone/modular v1.3.0
79
github.com/GoCodeAlone/modular/modules/chimux v0.0.0

examples/basic-app/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module basic-app
22

3-
go 1.24.2
3+
go 1.23.0
44

55
replace github.com/GoCodeAlone/modular => ../../
66

examples/http-client/go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ module http-client
22

33
go 1.24.2
44

5+
toolchain go1.24.4
6+
57
require (
68
github.com/GoCodeAlone/modular v1.3.0
79
github.com/GoCodeAlone/modular/modules/chimux v0.0.0

examples/instance-aware-db/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/GoCodeAlone/modular/examples/instance-aware-db
22

3-
go 1.24.2
3+
go 1.23.0
44

55
replace github.com/GoCodeAlone/modular => ../..
66

examples/multi-tenant-app/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module multi-tenant-app
22

3-
go 1.24.2
3+
go 1.23.0
44

55
replace github.com/GoCodeAlone/modular => ../../
66

examples/reverse-proxy/go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ module reverse-proxy
22

33
go 1.24.2
44

5+
toolchain go1.24.4
6+
57
require (
68
github.com/GoCodeAlone/modular v1.3.0
79
github.com/GoCodeAlone/modular/modules/chimux v0.0.0

0 commit comments

Comments
 (0)