Skip to content

Commit f36106c

Browse files
chore: Bump Go version from 1.21.3 to 1.21.4 in workflows and Dockerfile (#2961)
1 parent cfe3033 commit f36106c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-go@v4
1414
with:
15-
go-version: '1.21.3'
15+
go-version: '1.21.4'
1616
- run: go build ./...
1717

1818
darwin-build:
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v4
2323
- uses: actions/setup-go@v4
2424
with:
25-
go-version: '1.21.3'
25+
go-version: '1.21.4'
2626
- run: go build ./...
2727

2828
build:
@@ -43,7 +43,7 @@ jobs:
4343
- uses: actions/checkout@v4
4444
- uses: actions/setup-go@v4
4545
with:
46-
go-version: '1.21.3'
46+
go-version: '1.21.4'
4747

4848
- name: install gotestsum
4949
run: go install gotest.tools/gotestsum@latest
@@ -77,6 +77,6 @@ jobs:
7777
- uses: actions/checkout@v4
7878
- uses: actions/setup-go@v4
7979
with:
80-
go-version: '1.21.3'
80+
go-version: '1.21.4'
8181
- run: go install golang.org/x/vuln/cmd/govulncheck@latest
8282
- run: govulncheck ./...

.github/workflows/gen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v4
2121
- uses: actions/setup-go@v4
2222
with:
23-
go-version: '1.21.3'
23+
go-version: '1.21.4'
2424
- run: go build -o sqlc-pg-gen ./internal/tools/sqlc-pg-gen
2525
- run: mkdir -p gen/contrib
2626
- run: ./sqlc-pg-gen gen

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# STEP 1: Build sqlc
2-
FROM golang:1.21.3 AS builder
2+
FROM golang:1.21.4 AS builder
33

44
COPY . /workspace
55
WORKDIR /workspace

0 commit comments

Comments
 (0)