Skip to content

Commit

Permalink
Bump go to 1.21 (#184)
Browse files Browse the repository at this point in the history
* Bump go to 1.21

* Add hexdump for gvm
  • Loading branch information
krsna-m authored Sep 5, 2023
1 parent 52f9894 commit 1fde412
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions images/prow-tests/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ RUN apt-get update -qqy && apt-get install -qqy \
jq \
procps \
net-tools \
gnuplot
gnuplot \
bsdextrautils

RUN pip3 install -U crcmod==1.7
RUN curl -fsSLO https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-${CLOUD_SDK_VERSION}-linux-x86_64.tar.gz
Expand Down Expand Up @@ -173,11 +174,11 @@ RUN curl -fsSL "https://github.com/protocolbuffers/protobuf/releases/download/v$
# protoc-gen-gogofaster is installed below

############################################################
FROM golang:1.19.11 AS external-go-previous
FROM golang:1.20.7 AS external-go-previous
# Capture the version that dependabot bumps so that we can install it into the base image
RUN go version | cut -d' ' -f3 > /golang.version

FROM golang:1.20.6 AS external-go-latest
FROM golang:1.21.0 AS external-go-latest
# Capture the version that dependabot bumps so that we can install it into the base image
RUN go version | cut -d' ' -f3 > /golang.version

Expand Down
2 changes: 1 addition & 1 deletion images/tool/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.20.6
FROM golang:1.21.0

# Required input: -e TOOL_NAME=name, i.e. TOOL_NAME=flaky-test-reporter
ARG TOOL_NAME
Expand Down

0 comments on commit 1fde412

Please sign in to comment.