Skip to content

Commit 76cbbd0

Browse files
authored
chore: update latest Go runtime to 1.20
1 parent c902859 commit 76cbbd0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
],
2121
"force": {
2222
"constraints": {
23-
"go": "1.19"
23+
"go": "1.20"
2424
}
2525
}
2626
}

.github/workflows/vet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v3
1717
- uses: actions/setup-go@v3
1818
with:
19-
go-version: '1.19'
19+
go-version: '1.20'
2020
- name: Install tools
2121
run: |
2222
go install golang.org/x/lint/golint@latest && \

internal/gapicgen/cmd/genbot/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN apk add protoc protobuf-dev
1919
RUN protoc --version
2020

2121
# Install Go...quietly.
22-
RUN wget -O /tmp/go.tgz https://dl.google.com/go/go1.19.linux-amd64.tar.gz -q && \
22+
RUN wget -O /tmp/go.tgz https://dl.google.com/go/go1.20.linux-amd64.tar.gz -q && \
2323
tar -C /usr/local -xzf /tmp/go.tgz && \
2424
rm /tmp/go.tgz
2525
ENV PATH /usr/local/go/bin:$PATH

internal/gapicgen/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module cloud.google.com/go/internal/gapicgen
22

3-
go 1.19
3+
go 1.20
44

55
require (
66
cloud.google.com/go/internal/aliasfix v0.0.0

internal/postprocessor/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.19 as builder
15+
FROM golang:1.20 as builder
1616

1717
# Copy local code to the container image.
1818
COPY . /internal/

0 commit comments

Comments
 (0)