Skip to content

Commit

Permalink
chore: Upgrade to Go 1.22.8 to silence vulncheck (#3646)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleconroy authored Oct 9, 2024
1 parent df9413c commit d0b8637
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 ./...
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d0b8637

Please sign in to comment.