Skip to content

Commit e3b8f18

Browse files
authored
Merge pull request #808 from ydb-platform/go-1.21
Update latest go to 1.21
2 parents f6c5e88 + 85e7b70 commit e3b8f18

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/breaking.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Install Go
1616
uses: actions/setup-go@v3
1717
with:
18-
go-version: "1.20"
18+
go-version: "1.21"
1919
- name: Checkout code
2020
uses: actions/checkout@v3
2121
- name: Install gorelease

.github/workflows/check-codegen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ ubuntu-latest ]
17-
go-version: [1.19.x, 1.20.x]
17+
go-version: [1.20.x, 1.21.x]
1818
runs-on: ${{ matrix.os }}
1919
steps:
2020
- name: Checkout

.github/workflows/examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- 5432:5432
6969
env:
7070
OS: ubuntu-latest
71-
GO: 1.20.x
71+
GO: 1.21.x
7272
POSTGRES_CONNECTION_STRING: postgres://postgres:postgres@localhost:5432/basic?sslmode=disable
7373
steps:
7474
- name: Checkout code
@@ -91,7 +91,7 @@ jobs:
9191
application: [ gorm, xorm ]
9292
env:
9393
OS: ubuntu-latest
94-
GO: 1.20.x
94+
GO: 1.21.x
9595
SQLITE_CONNECTION_STRING: ${{ matrix.application }}.db
9696
steps:
9797
- name: Checkout code

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: Install Go
6666
uses: actions/setup-go@v3
6767
with:
68-
go-version: "1.20"
68+
go-version: "1.21"
6969

7070
- name: Install utilities
7171
run: |

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
cancel-in-progress: true
1414
strategy:
1515
matrix:
16-
go-version: [1.17.x, 1.19.x, 1.20.x]
16+
go-version: [1.17.x, 1.20.x, 1.21.x]
1717
os: [ubuntu, windows, macOS]
1818
env:
1919
OS: ${{ matrix.os }}-latest
@@ -43,7 +43,7 @@ jobs:
4343
strategy:
4444
fail-fast: false
4545
matrix:
46-
go-version: [1.17.x, 1.19.x, 1.20.x]
46+
go-version: [1.17.x, 1.20.x, 1.21.x]
4747
ydb-version: [22.5, 23.1, 23.2, 23.2-slim]
4848
services:
4949
ydb:

tests/slo/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.20 as build
1+
FROM golang:1.21 as build
22
ARG SRC_PATH
33
ARG JOB_NAME
44
COPY . /src

tests/slo/go.mod

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

3-
go 1.20
3+
go 1.21
44

55
require (
66
github.com/prometheus/client_golang v1.14.0

0 commit comments

Comments
 (0)