Skip to content

Commit ca90a0b

Browse files
committed
chore: Update sqlc to v1.16.0
1 parent 8819f79 commit ca90a0b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/coder.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ jobs:
215215

216216
- name: Install sqlc
217217
run: |
218-
curl -sSL https://github.com/kyleconroy/sqlc/releases/download/v1.13.0/sqlc_1.13.0_linux_amd64.tar.gz | sudo tar -C /usr/bin -xz sqlc
218+
curl -sSL https://github.com/kyleconroy/sqlc/releases/download/v1.16.0/sqlc_1.16.0_linux_amd64.tar.gz | sudo tar -C /usr/bin -xz sqlc
219219
- name: Install protoc-gen-go
220220
run: go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.26
221221
- name: Install protoc-gen-go-drpc

coderd/database/generate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ SCRIPT_DIR=$(dirname "${BASH_SOURCE[0]}")
1818
# Dump the updated schema (use make to utilize caching).
1919
make -C ../.. --no-print-directory coderd/database/dump.sql
2020
# The logic below depends on the exact version being correct :(
21-
go run github.com/kyleconroy/sqlc/cmd/sqlc@v1.13.0 generate
21+
go run github.com/kyleconroy/sqlc/cmd/sqlc@v1.16.0 generate
2222

2323
first=true
2424
for fi in queries/*.sql.go; do

dogfood/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ RUN mkdir --parents "$GOPATH" && \
5353
# charts and values files
5454
go install github.com/norwoodj/helm-docs/cmd/helm-docs@v1.5.0 && \
5555
# sqlc for Go code generation
56-
go install github.com/kyleconroy/sqlc/cmd/sqlc@v1.10.0 && \
56+
go install github.com/kyleconroy/sqlc/cmd/sqlc@v1.16.0 && \
5757
# gcr-cleaner-cli used by CI to prune unused images
5858
go install github.com/sethvargo/gcr-cleaner/cmd/gcr-cleaner-cli@v0.5.1 && \
5959
# ruleguard for checking custom rules, without needing to run all of

0 commit comments

Comments
 (0)