From f4474b0f1292f495ed9e7a6d50a89f801ab9c6f4 Mon Sep 17 00:00:00 2001 From: Cian Johnston Date: Wed, 24 May 2023 10:23:43 +0100 Subject: [PATCH] chore(dogfood): Update sqlc version in dogfood image to match that used in CI We were not using the same version of sqlc in the dogfood image Dockerfile as we are using in CI, leading to test failures when running `make gen`. --- dogfood/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dogfood/Dockerfile b/dogfood/Dockerfile index 24254ce6674c9..bc3a50da8052c 100644 --- a/dogfood/Dockerfile +++ b/dogfood/Dockerfile @@ -53,7 +53,7 @@ RUN mkdir --parents "$GOPATH" && \ # charts and values files go install github.com/norwoodj/helm-docs/cmd/helm-docs@v1.5.0 && \ # sqlc for Go code generation - go install github.com/kyleconroy/sqlc/cmd/sqlc@v1.16.0 && \ + go install github.com/kyleconroy/sqlc/cmd/sqlc@v1.17.2 && \ # gcr-cleaner-cli used by CI to prune unused images go install github.com/sethvargo/gcr-cleaner/cmd/gcr-cleaner-cli@v0.5.1 && \ # ruleguard for checking custom rules, without needing to run all of