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
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24.4'
go-version: '1.25.1'

- name: Install Oracle Instant Client
run: |
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/oracle-samples/gorm-oracle

go 1.24.4
go 1.25.1

require (
github.com/godror/godror v0.49.3
Expand Down
8 changes: 3 additions & 5 deletions tests/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/oracle-samples/gorm-oracle/tests

go 1.24.4
go 1.25.1

require gorm.io/gorm v1.31.0

Expand All @@ -9,6 +9,7 @@ require (
github.com/oracle-samples/gorm-oracle v0.1.0
github.com/stretchr/testify v1.10.0
gorm.io/datatypes v1.2.6
github.com/google/uuid v1.6.0
)

require (
Expand All @@ -18,7 +19,6 @@ require (
github.com/go-logfmt/logfmt v0.6.0 // indirect
github.com/go-sql-driver/mysql v1.8.1 // indirect
github.com/godror/knownpb v0.3.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/kr/pretty v0.3.0 // indirect
Expand All @@ -31,6 +31,4 @@ require (
gorm.io/driver/mysql v1.5.6 // indirect
)

replace github.com/oracle-samples/gorm-oracle => ../

// replace github.com/godror/godror => /Users/tinglwang/vscodeWorkspace/godror
replace github.com/oracle-samples/gorm-oracle => ../
Loading