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

Bump cf-acceptance-tests golang version to 1.21.1 #296

Merged
merged 1 commit into from
Sep 19, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cf-acceptance-tests/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ RUN apt update \
ENV GOPATH /go
ENV PATH /go/bin:/usr/local/go/bin:$PATH

ENV GO_VERSION "1.20"
ENV GO_VERSION "1.21.1"
ENV CF_CLI_VERSION "8.6.0"
ENV CF_LOG_CACHE_VERSION "2.1.0"

RUN \
wget https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz -P /tmp && \
wget https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz -P /tmp && \
tar xzvf /tmp/go${GO_VERSION}.linux-amd64.tar.gz -C /usr/local && \
mkdir $GOPATH && \
rm -rf /tmp/*
Expand Down
2 changes: 1 addition & 1 deletion cf-acceptance-tests/cf-acceptance-tests_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'docker'
require 'serverspec'

GO_VERSION="1.20"
GO_VERSION="1.21.1"
CF_CLI_VERSION="8.6.0"
LOG_CACHE_CLI_VERSION="2.1.0"

Expand Down
Loading