Skip to content

Commit ed8ae2f

Browse files
authored
chore: upgrade go to 1.20.8
1 parent 9e84521 commit ed8ae2f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/actions/setup-go/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: |
44
inputs:
55
version:
66
description: "The Go version to use."
7-
default: "1.20.7"
7+
default: "1.20.8"
88
runs:
99
using: "composite"
1010
steps:

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ jobs:
220220
with:
221221
# This doesn't need caching. It's super fast anyways!
222222
cache: false
223-
go-version: 1.20.7
223+
go-version: 1.20.8
224224

225225
- name: Install shfmt
226226
run: go install mvdan.cc/sh/v3/cmd/shfmt@v3.5.0

examples/templates/jfrog/docker/build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt-get update \
1111
npm \
1212
&& rm -rf /var/lib/apt/lists/*
1313

14-
ARG GO_VERSION=1.20.7
14+
ARG GO_VERSION=1.20.8
1515
RUN mkdir --parents /usr/local/go && curl --silent --show-error --location \
1616
"https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz" -o /usr/local/go.tar.gz && \
1717
tar --extract --gzip --directory=/usr/local/go --file=/usr/local/go.tar.gz --strip-components=1

0 commit comments

Comments
 (0)