File tree 5 files changed +3
-10
lines changed
5 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description: |
4
4
inputs :
5
5
version :
6
6
description : " The Go version to use."
7
- default : " 1.20.6 "
7
+ default : " 1.20.7 "
8
8
runs :
9
9
using : " composite"
10
10
steps :
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ jobs:
224
224
with :
225
225
# This doesn't need caching. It's super fast anyways!
226
226
cache : false
227
- go-version : 1.20.6
227
+ go-version : 1.20.7
228
228
229
229
- name : Install shfmt
230
230
run : go install mvdan.cc/sh/v3/cmd/shfmt@v3.5.0
Original file line number Diff line number Diff line change 28
28
# https://github.blog/changelog/2022-06-10-github-actions-inputs-unified-across-manual-and-reusable-workflows/
29
29
CODER_RELEASE : ${{ !inputs.dry_run }}
30
30
CODER_DRY_RUN : ${{ inputs.dry_run }}
31
- # For some reason, setup-go won't actually pick up a new patch version if
32
- # it has an old one cached. We need to manually specify the versions so we
33
- # can get the latest release. Never use "~1.xx" here!
34
- CODER_GO_VERSION : " 1.20.6"
35
31
36
32
jobs :
37
33
release :
Original file line number Diff line number Diff line change @@ -21,9 +21,6 @@ concurrency:
21
21
group : ${{ github.workflow }}-${{ github.ref }}-security
22
22
cancel-in-progress : ${{ github.event_name == 'pull_request' }}
23
23
24
- env :
25
- CODER_GO_VERSION : " 1.20.6"
26
-
27
24
jobs :
28
25
codeql :
29
26
runs-on : ${{ github.repository_owner == 'coder' && 'buildjet-8vcpu-ubuntu-2204' || 'ubuntu-latest' }}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ FROM ubuntu:jammy AS go
8
8
9
9
RUN apt-get update && apt-get install --yes curl gcc
10
10
# Install Go manually, so that we can control the version
11
- ARG GO_VERSION=1.20.6
11
+ ARG GO_VERSION=1.20.7
12
12
RUN mkdir --parents /usr/local/go
13
13
14
14
# Boring Go is needed to build FIPS-compliant binaries.
You can’t perform that action at this time.
0 commit comments