Skip to content

Commit

Permalink
Temporarily pin cf cli version to 8.8.3
Browse files Browse the repository at this point in the history
CF cli have created a new tag
[`v8.9.0`](https://github.com/cloudfoundry/cli/releases/tag/v8.9.0) but
have not attached the cli binaries to it. Therefore, fetching latest cli
fails with `HTTP 404` error, e.g. see
https://ci.korifi.cf-app.com/teams/main/pipelines/main/jobs/run-e2es-eks-periodic/builds/11159

To mitigate this, we pin the cli version to the previous release until
the issue is solved on the cli side.

Co-authored-by: Danail Branekov <danailster@gmail.com>
  • Loading branch information
uzabanov and danail-branekov committed Dec 3, 2024
1 parent 62feb38 commit c3efa00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ bin/golangci-lint:

bin/cf:
mkdir -p $(GOBIN)
curl -fsSL "https://packages.cloudfoundry.org/stable?release=linux64-binary&version=v8&source=github" \
curl -fsSL "https://packages.cloudfoundry.org/stable?release=linux64-binary&version=8.8.3&source=github-rel" \
| tar -zx cf8 \
&& mv cf8 $(GOBIN)/cf \
&& chmod +x $(GOBIN)/cf
Expand Down

0 comments on commit c3efa00

Please sign in to comment.