From d0b863786358647aae167f13dc382e7d978f0d23 Mon Sep 17 00:00:00 2001 From: Kyle Gray Date: Wed, 9 Oct 2024 11:18:30 -0700 Subject: [PATCH] chore: Upgrade to Go 1.22.8 to silence vulncheck (#3646) --- .github/workflows/ci.yml | 4 ++-- Dockerfile | 2 +- go.mod | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10c7f41a7c..7b4b87de10 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: '1.22.5' + go-version: '1.22.8' - name: install gotestsum run: go install gotest.tools/gotestsum@latest @@ -78,6 +78,6 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: '1.22.5' + go-version: '1.22.8' - run: go install golang.org/x/vuln/cmd/govulncheck@latest - run: govulncheck ./... diff --git a/Dockerfile b/Dockerfile index a01a36c4fa..1b9d3e4c09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # STEP 1: Build sqlc -FROM golang:1.23.1 AS builder +FROM golang:1.23.2 AS builder COPY . /workspace WORKDIR /workspace diff --git a/go.mod b/go.mod index fe705481ca..d0f9c982dd 100644 --- a/go.mod +++ b/go.mod @@ -2,7 +2,7 @@ module github.com/sqlc-dev/sqlc go 1.22 -toolchain go1.22.5 +toolchain go1.22.8 require ( github.com/antlr4-go/antlr/v4 v4.13.1