diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 78bf4f0b43..f9353344a1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -198,7 +198,7 @@ jobs: with: # This doesn't need caching. It's super fast anyways! cache: false - go-version: 1.20.5 + go-version: 1.20.6 - name: Install prettier # We only need prettier for fmt, so do not install all dependencies. diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e4c7b12b5a..670b7cfb5d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -31,7 +31,7 @@ env: # For some reason, setup-go won't actually pick up a new patch version if # it has an old one cached. We need to manually specify the versions so we # can get the latest release. Never use "~1.xx" here! - CODER_GO_VERSION: "1.20.5" + CODER_GO_VERSION: "1.20.6" jobs: release: diff --git a/.github/workflows/security.yaml b/.github/workflows/security.yaml index d843760f68..2a272fc36d 100644 --- a/.github/workflows/security.yaml +++ b/.github/workflows/security.yaml @@ -22,7 +22,7 @@ concurrency: cancel-in-progress: ${{ github.event_name == 'pull_request' }} env: - CODER_GO_VERSION: "1.20.5" + CODER_GO_VERSION: "1.20.6" jobs: codeql: diff --git a/dogfood/Dockerfile b/dogfood/Dockerfile index 99267630c7..6f10496753 100644 --- a/dogfood/Dockerfile +++ b/dogfood/Dockerfile @@ -8,7 +8,7 @@ FROM ubuntu:jammy AS go RUN apt-get update && apt-get install --yes curl gcc # Install Go manually, so that we can control the version -ARG GO_VERSION=1.20.5 +ARG GO_VERSION=1.20.6 RUN mkdir --parents /usr/local/go # Boring Go is needed to build FIPS-compliant binaries.