Skip to content

Commit df48e91

Browse files
committed
Upgrade Go version (#1867)
1 parent 546a24c commit df48e91

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/examples.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
ydb-version: [ 24.3 ]
19+
ydb-version: [ 25.2 ]
2020
application: [ native/table, native/query ]
2121
services:
2222
ydb:
@@ -34,7 +34,7 @@ jobs:
3434
options: '-h localhost'
3535
env:
3636
OS: ubuntu-latest
37-
GO: 1.24.x
37+
GO: 1.25.x
3838
YDB_CONNECTION_STRING: grpc://localhost:2136/local
3939
YDB_ANONYMOUS_CREDENTIALS: 1
4040
YDB_VERSION: ${{ matrix.ydb-version }}
@@ -57,7 +57,7 @@ jobs:
5757
strategy:
5858
fail-fast: false
5959
matrix:
60-
ydb-version: [ 24.3 ]
60+
ydb-version: [ 25.2 ]
6161
application: [ database/sql, gorm, xorm ]
6262
query_service: [ true, false ]
6363
services:
@@ -76,7 +76,7 @@ jobs:
7676
options: '-h localhost'
7777
env:
7878
OS: ubuntu-latest
79-
GO: 1.24.x
79+
GO: 1.25.x
8080
YDB_CONNECTION_STRING: grpc://localhost:2136/local
8181
YDB_ANONYMOUS_CREDENTIALS: 1
8282
YDB_VERSION: ${{ matrix.ydb-version }}
@@ -116,7 +116,7 @@ jobs:
116116
- 5432:5432
117117
env:
118118
OS: ubuntu-latest
119-
GO: 1.24.x
119+
GO: 1.25.x
120120
POSTGRES_CONNECTION_STRING: postgres://postgres:postgres@localhost:5432/basic?sslmode=disable
121121
steps:
122122
- name: Checkout code
@@ -140,7 +140,7 @@ jobs:
140140
application: [ gorm, xorm ]
141141
env:
142142
OS: ubuntu-latest
143-
GO: 1.24.x
143+
GO: 1.25.x
144144
SQLITE_CONNECTION_STRING: ${{ matrix.application }}.db
145145
steps:
146146
- name: Checkout code

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
workflow_dispatch:
99
env:
1010
GOLANGCI_LINT_VERSION: v2.1.6
11-
GO_VERSION: '1.22'
11+
GO_VERSION: '1.25'
1212
jobs:
1313
golangci:
1414
if: (!contains(github.event.pull_request.labels.*.name, 'no lint'))

.github/workflows/slo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
- name: Install Go
8181
uses: actions/setup-go@v5
8282
with:
83-
go-version: 1.24.x
83+
go-version: 1.25.x
8484
cache: true
8585

8686
- name: Build workload

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
go-version: [1.21.x, 1.24.x]
22+
go-version: [1.21.x, 1.25.x]
2323
os: [ubuntu, windows, macOS]
2424
env:
2525
OS: ${{ matrix.os }}-latest
@@ -52,8 +52,8 @@ jobs:
5252
strategy:
5353
fail-fast: false
5454
matrix:
55-
go-version: [1.21.x, 1.24.x]
56-
ydb-version: [latest, 24.4, 25.1]
55+
go-version: [1.21.x, 1.25.x]
56+
ydb-version: [latest, 24.4, 25.2]
5757
os: [ubuntu]
5858
services:
5959
ydb:
@@ -108,7 +108,7 @@ jobs:
108108
strategy:
109109
fail-fast: false
110110
matrix:
111-
go-version: [1.24.x]
111+
go-version: [1.25.x]
112112
ydb-version: [nightly]
113113
os: [ubuntu]
114114
services:

0 commit comments

Comments
 (0)