Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fixup 1.17 -> 1.18 things #5851

Merged
merged 2 commits into from Apr 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/gapicgen/cmd/genbot/Dockerfile
Expand Up @@ -16,7 +16,7 @@ RUN apk add protoc protobuf-dev
RUN protoc --version

# Install Go.
RUN wget -O /tmp/go.tgz https://dl.google.com/go/go1.17.linux-amd64.tar.gz && \
RUN wget -O /tmp/go.tgz https://dl.google.com/go/go1.18.linux-amd64.tar.gz && \
tar -C /usr/local -xzf /tmp/go.tgz && \
rm /tmp/go.tgz
ENV PATH /usr/local/go/bin:$PATH
Expand Down
2 changes: 1 addition & 1 deletion internal/gapicgen/go.mod
@@ -1,6 +1,6 @@
module cloud.google.com/go/internal/gapicgen

go 1.17
go 1.18

require (
cloud.google.com/go v0.100.2
Expand Down
2 changes: 1 addition & 1 deletion internal/kokoro/check_incompat_changes.sh
Expand Up @@ -17,7 +17,7 @@
set -x

# Only run apidiff checks on latest (we only need it once).
if [[ `go version` != *"go1.17"* ]]; then
if [[ `go version` != *"go1.18"* ]]; then
exit 0
fi

Expand Down
2 changes: 1 addition & 1 deletion internal/kokoro/vet.sh
Expand Up @@ -19,7 +19,7 @@ set -e
# Display commands being run
set -x

if [[ $(go version) != *"go1.17"* ]]; then
if [[ $(go version) != *"go1.18"* ]]; then
exit 0
fi

Expand Down