chore: upgrade go version to 1.20.6 (#8457)

This commit is contained in:
Muhammad Atif Ali
2023-07-12 17:27:17 +03:00
committed by GitHub
parent 280112a366
commit 765fd29336
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -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.
+1 -1
View File
@@ -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:
+1 -1
View File
@@ -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:
+1 -1
View File
@@ -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.