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
12 changes: 6 additions & 6 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ydb-version: [ 24.3 ]
ydb-version: [ 25.2 ]
application: [ native/table, native/query ]
services:
ydb:
Expand All @@ -34,7 +34,7 @@ jobs:
options: '-h localhost'
env:
OS: ubuntu-latest
GO: 1.24.x
GO: 1.25.x
YDB_CONNECTION_STRING: grpc://localhost:2136/local
YDB_ANONYMOUS_CREDENTIALS: 1
YDB_VERSION: ${{ matrix.ydb-version }}
Expand All @@ -57,7 +57,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ydb-version: [ 24.3 ]
ydb-version: [ 25.2 ]
application: [ database/sql, gorm, xorm ]
query_service: [ true, false ]
services:
Expand All @@ -76,7 +76,7 @@ jobs:
options: '-h localhost'
env:
OS: ubuntu-latest
GO: 1.24.x
GO: 1.25.x
YDB_CONNECTION_STRING: grpc://localhost:2136/local
YDB_ANONYMOUS_CREDENTIALS: 1
YDB_VERSION: ${{ matrix.ydb-version }}
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
- 5432:5432
env:
OS: ubuntu-latest
GO: 1.24.x
GO: 1.25.x
POSTGRES_CONNECTION_STRING: postgres://postgres:postgres@localhost:5432/basic?sslmode=disable
steps:
- name: Checkout code
Expand All @@ -140,7 +140,7 @@ jobs:
application: [ gorm, xorm ]
env:
OS: ubuntu-latest
GO: 1.24.x
GO: 1.25.x
SQLITE_CONNECTION_STRING: ${{ matrix.application }}.db
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
workflow_dispatch:
env:
GOLANGCI_LINT_VERSION: v2.1.6
GO_VERSION: '1.22'
GO_VERSION: '1.25'
jobs:
golangci:
if: (!contains(github.event.pull_request.labels.*.name, 'no lint'))
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.24.x
go-version: 1.25.x
cache: true

- name: Build workload
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.21.x, 1.24.x]
go-version: [1.21.x, 1.25.x]
os: [ubuntu, windows, macOS]
env:
OS: ${{ matrix.os }}-latest
Expand Down Expand Up @@ -52,8 +52,8 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.21.x, 1.24.x]
ydb-version: [latest, 24.4, 25.1]
go-version: [1.21.x, 1.25.x]
ydb-version: [latest, 24.4, 25.2]
os: [ubuntu]
services:
ydb:
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.24.x]
go-version: [1.25.x]
ydb-version: [nightly]
os: [ubuntu]
services:
Expand Down
Loading