Skip to content

Commit e41f92d

Browse files
committed
chore: update to go 1.23
1 parent 3f1e349 commit e41f92d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/setup-go@v5
3030
with:
3131
cache: true
32-
go-version: '1.20'
32+
go-version: '1.23'
3333
- name: Build binary file
3434
env:
3535
GOOS: ${{ matrix.goos }}

.github/workflows/golint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Go environment
1313
uses: actions/setup-go@v5
1414
with:
15-
go-version: '1.20'
15+
go-version: '1.23'
1616
cache: false
1717

1818
- name: Sort imports

.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: Set up Go
2121
uses: actions/setup-go@v5
2222
with:
23-
go-version: '1.20'
23+
go-version: '1.23'
2424

2525
- name: Run GoReleaser
2626
uses: goreleaser/goreleaser-action@v4

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.20-alpine AS builder
1+
FROM golang:1.23-alpine AS builder
22

33
RUN go env -w GO111MODULE=auto \
44
&& go env -w CGO_ENABLED=0

0 commit comments

Comments
 (0)