Skip to content

Commit 9826681

Browse files
use golang 1.23 (#803)
1 parent 29c1038 commit 9826681

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install Go
2525
uses: actions/setup-go@v5
2626
with:
27-
go-version: '1.21'
27+
go-version: '1.23'
2828
cache: true
2929

3030
- name: Build
@@ -63,7 +63,7 @@ jobs:
6363
- name: Install Go
6464
uses: actions/setup-go@v5
6565
with:
66-
go-version: '1.21'
66+
go-version: '1.23'
6767
cache: true
6868

6969
- name: Run docker containers
@@ -112,7 +112,7 @@ jobs:
112112
- name: Install Go
113113
uses: actions/setup-go@v5
114114
with:
115-
go-version: '1.21'
115+
go-version: '1.23'
116116
cache: true
117117

118118
- name: Lint
@@ -137,7 +137,7 @@ jobs:
137137
- name: Install Go
138138
uses: actions/setup-go@v5
139139
with:
140-
go-version: '1.21'
140+
go-version: '1.23'
141141
cache: true
142142

143143
- name: Generate doc
@@ -161,7 +161,7 @@ jobs:
161161
- name: Install Go
162162
uses: actions/setup-go@v5
163163
with:
164-
go-version: '1.21'
164+
go-version: '1.23'
165165
cache: true
166166

167167
- name: Download dependencies

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install Go
2121
uses: actions/setup-go@v5
2222
with:
23-
go-version: '1.21'
23+
go-version: '1.23'
2424
cache: true
2525

2626
- name: Run GoReleaser

build/package/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG APP_IMAGE=ubuntu:latest
22

33
# Build
4-
FROM --platform=$BUILDPLATFORM golang:1.21-alpine AS build
4+
FROM --platform=$BUILDPLATFORM golang:1.23-alpine AS build
55

66
ARG VERSION
77
ARG BUILD_TIME

build/package/Dockerfile_dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG APP_IMAGE=ubuntu:22.04
22

33
# Build
4-
FROM --platform=$BUILDPLATFORM golang:1.21-alpine AS build
4+
FROM --platform=$BUILDPLATFORM golang:1.23-alpine AS build
55

66
ARG VERSION
77
ARG BUILD_TIME

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/ozontech/file.d
22

3-
go 1.21
3+
go 1.23
44

5-
toolchain go1.21.0
5+
toolchain go1.23.7
66

77
require (
88
github.com/ClickHouse/ch-go v0.58.2

0 commit comments

Comments
 (0)