Skip to content

Commit 765fd29

Browse files
authored
chore: upgrade go version to 1.20.6 (#8457)
1 parent 280112a commit 765fd29

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ jobs:
198198
with:
199199
# This doesn't need caching. It's super fast anyways!
200200
cache: false
201-
go-version: 1.20.5
201+
go-version: 1.20.6
202202

203203
- name: Install prettier
204204
# We only need prettier for fmt, so do not install all dependencies.

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ env:
3131
# For some reason, setup-go won't actually pick up a new patch version if
3232
# it has an old one cached. We need to manually specify the versions so we
3333
# can get the latest release. Never use "~1.xx" here!
34-
CODER_GO_VERSION: "1.20.5"
34+
CODER_GO_VERSION: "1.20.6"
3535

3636
jobs:
3737
release:

.github/workflows/security.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ concurrency:
2222
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
2323

2424
env:
25-
CODER_GO_VERSION: "1.20.5"
25+
CODER_GO_VERSION: "1.20.6"
2626

2727
jobs:
2828
codeql:

dogfood/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FROM ubuntu:jammy AS go
88

99
RUN apt-get update && apt-get install --yes curl gcc
1010
# Install Go manually, so that we can control the version
11-
ARG GO_VERSION=1.20.5
11+
ARG GO_VERSION=1.20.6
1212
RUN mkdir --parents /usr/local/go
1313

1414
# Boring Go is needed to build FIPS-compliant binaries.

0 commit comments

Comments
 (0)