Skip to content

Commit e414739

Browse files
committed
fix go version
1 parent 9f8e612 commit e414739

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/ci-kotlin.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-go@v5
1414
with:
15-
go-version: '1.21.3'
15+
go-version: '1.23.2'
1616
- name: install ./...
1717
run: go install ./...
1818
- uses: actions/checkout@v4

.github/workflows/ci-python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-go@v5
1414
with:
15-
go-version: '1.21.3'
15+
go-version: '1.23.2'
1616
- name: install ./...
1717
run: go install ./...
1818
- uses: actions/checkout@v4

.github/workflows/ci-typescript.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-go@v5
1414
with:
15-
go-version: '1.21.3'
15+
go-version: '1.23.2'
1616
- name: install ./...
1717
run: go install ./...
1818
- uses: actions/checkout@v4

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/checkout@v4
3131
- uses: actions/setup-go@v5
3232
with:
33-
go-version: '1.22.5'
33+
go-version: '1.23.2'
3434

3535
- name: install gotestsum
3636
run: go install gotest.tools/gotestsum@latest
@@ -78,6 +78,6 @@ jobs:
7878
- uses: actions/checkout@v4
7979
- uses: actions/setup-go@v5
8080
with:
81-
go-version: '1.22.5'
81+
go-version: '1.23.2'
8282
- run: go install golang.org/x/vuln/cmd/govulncheck@latest
8383
- run: govulncheck ./...

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# STEP 1: Build sqlc
2-
FROM golang:1.23.1 AS builder
2+
FROM golang:1.23.2 AS builder
33

44
COPY . /workspace
55
WORKDIR /workspace

docs/overview/install.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ sudo snap install sqlc
1616

1717
## go install
1818

19-
Installing recent versions of sqlc requires Go 1.21+.
19+
Installing recent versions of sqlc requires Go 1.23+.
2020

2121
```
2222
go install github.com/sqlc-dev/sqlc/cmd/sqlc@latest

0 commit comments

Comments
 (0)