Skip to content

Commit 92d43fa

Browse files
fixed ci
1 parent 812059c commit 92d43fa

File tree

6 files changed

+255
-68
lines changed

6 files changed

+255
-68
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
strategy:
2828
matrix:
29-
go: ['1.23', '1.24']
29+
go: ['1.23', '1.24.9']
3030
steps:
3131
- uses: actions/checkout@v4
3232
- uses: actions/setup-go@v5

dialect/sql/schema/ydb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ func (d *YDB) atTypeC(column1 *Column, column2 *schema.Column) error {
151151
case field.TypeUUID:
152152
typ = &schema.UUIDType{T: atlas.TypeUuid}
153153
case field.TypeEnum:
154-
err = errors.New("ydb: Enum can't be used as column data types for tables")
154+
err = errors.New("ydb: enum can't be used as column data types for tables")
155155
case field.TypeOther:
156156
typ = &schema.UnsupportedType{T: column1.typ}
157157
default:

entc/integration/go.mod

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module entgo.io/ent/entc/integration
22

3-
go 1.24.0
3+
go 1.24.9
4+
5+
toolchain go1.24.11
46

57
replace entgo.io/ent => ../../
68

@@ -12,8 +14,8 @@ require (
1214
github.com/google/uuid v1.6.0
1315
github.com/lib/pq v1.10.7
1416
github.com/mattn/go-sqlite3 v1.14.28
15-
github.com/stretchr/testify v1.10.0
16-
golang.org/x/sync v0.17.0
17+
github.com/stretchr/testify v1.11.1
18+
golang.org/x/sync v0.19.0
1719
)
1820

1921
require (
@@ -22,8 +24,10 @@ require (
2224
github.com/bmatcuk/doublestar v1.3.4 // indirect
2325
github.com/davecgh/go-spew v1.1.1 // indirect
2426
github.com/go-openapi/inflect v0.19.0 // indirect
27+
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
2528
github.com/google/go-cmp v0.7.0 // indirect
2629
github.com/hashicorp/hcl/v2 v2.18.1 // indirect
30+
github.com/jonboulle/clockwork v0.5.0 // indirect
2731
github.com/json-iterator/go v1.1.12 // indirect
2832
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
2933
github.com/mitchellh/mapstructure v1.5.0 // indirect
@@ -32,9 +36,18 @@ require (
3236
github.com/pmezard/go-difflib v1.0.0 // indirect
3337
github.com/rogpeppe/go-internal v1.11.0 // indirect
3438
github.com/stretchr/objx v0.5.2 // indirect
39+
github.com/ydb-platform/ydb-go-genproto v0.0.0-20251222105147-0bf751469a4a // indirect
40+
github.com/ydb-platform/ydb-go-sdk/v3 v3.125.0 // indirect
3541
github.com/zclconf/go-cty v1.14.4 // indirect
3642
github.com/zclconf/go-cty-yaml v1.1.0 // indirect
37-
golang.org/x/mod v0.28.0 // indirect
38-
golang.org/x/text v0.30.0 // indirect
43+
golang.org/x/mod v0.30.0 // indirect
44+
golang.org/x/net v0.48.0 // indirect
45+
golang.org/x/sys v0.39.0 // indirect
46+
golang.org/x/text v0.32.0 // indirect
47+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251222181119-0a764e51fe1b // indirect
48+
google.golang.org/grpc v1.78.0 // indirect
49+
google.golang.org/protobuf v1.36.11 // indirect
3950
gopkg.in/yaml.v3 v3.0.1 // indirect
4051
)
52+
53+
replace ariga.io/atlas => github.com/LostImagin4tion/atlas v0.0.5

0 commit comments

Comments
 (0)