Skip to content

Commit 0812269

Browse files
authored
Merge pull request #77 from orange-cloudfoundry/renovate/cloudfoundry-bosh-cli-7.x
chore(deps): update dependency cloudfoundry/bosh-cli to v7.5.6
2 parents 7253f58 + eec5055 commit 0812269

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

bosh-cli-v2-cf-cli/bosh-cli-v2-cf-cli_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require 'docker'
33
require 'serverspec'
44

5-
BOSH_CLI_VERSION="7.4.0" # renovate: datasource=github-releases depName=cloudfoundry/bosh-cli
5+
BOSH_CLI_VERSION="7.5.6" # renovate: datasource=github-releases depName=cloudfoundry/bosh-cli
66
CF_CLI_VERSION="8.7.6" # renovate: datasource=github-releases depName=cloudfoundry/cli
77
SPRUCE_BIN = "/usr/local/bin/spruce"
88
SPRUCE_VERSION = "1.31.0" # renovate: datasource=github-releases depName=geofffranks/spruce
@@ -31,7 +31,7 @@
3131
it "has the expected version of the Bosh CLI (#{BOSH_CLI_VERSION})" do
3232
expect(
3333
command("bosh -v").stdout.strip
34-
).to match("version #{BOSH_CLI_VERSION}-")
34+
).to match("version #{BOSH_CLI_VERSION}$")
3535
end
3636

3737
it "has the expected version of the CF CLI (#{CF_CLI_VERSION})" do

bosh-cli-v2/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM ruby:3.1-slim-bullseye
22

33
# renovate: datasource=github-releases depName=cloudfoundry/bosh-cli
4-
ENV BOSH_CLI_VERSION 7.4.0
5-
ENV BOSH_CLI_SUM 98705c704beedb08621db48ab2f4cad42704b85aba36cc99f3a9dc2738ebc226
4+
ENV BOSH_CLI_VERSION 7.5.6
5+
ENV BOSH_CLI_SUM 6fb9bb085c3afe7eff6e9a4e783731aeb4f03baf5ce1caf7ed229f29a97e60ac
66
ENV BOSH_CLI_FILENAME bosh-cli-${BOSH_CLI_VERSION}-linux-amd64
77

88
ENV DEBIAN_PACKAGES "ca-certificates wget git openssh-client file jq"
@@ -17,7 +17,7 @@ RUN apt-get update \
1717
&& apt-get install -y --no-install-recommends ${BOSH_ENV_DEPS} \
1818
&& rm -rf /var/lib/apt/lists/*
1919

20-
RUN wget -nv https://s3.amazonaws.com/bosh-cli-artifacts/${BOSH_CLI_FILENAME} \
20+
RUN wget -nv https://github.com/cloudfoundry/bosh-cli/releases/download/v${BOSH_CLI_VERSION}/${BOSH_CLI_FILENAME} \
2121
&& echo "${BOSH_CLI_SUM} ${BOSH_CLI_FILENAME}" | sha256sum -c - \
2222
&& chmod +x ${BOSH_CLI_FILENAME} \
2323
&& mv ${BOSH_CLI_FILENAME} /usr/local/bin/bosh

bosh-cli-v2/bosh-cli-v2_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require 'docker'
33
require 'serverspec'
44

5-
BOSH_CLI_VERSION="7.4.0" # renovate: datasource=github-releases depName=cloudfoundry/bosh-cli
5+
BOSH_CLI_VERSION="7.5.6" # renovate: datasource=github-releases depName=cloudfoundry/bosh-cli
66
CREDHUB_CLI_VERSION='2.9.24' # renovate: datasource=github-releases depName=cloudfoundry/credhub-cli
77
RUBY_VERSION = "3.1"
88

@@ -23,7 +23,7 @@
2323
it "has the expected version of the Bosh CLI (#{BOSH_CLI_VERSION})" do
2424
expect(
2525
command("bosh -v").stdout.strip
26-
).to match("version #{BOSH_CLI_VERSION}-")
26+
).to match("version #{BOSH_CLI_VERSION}$")
2727
end
2828

2929
it "has `file` available" do

k8s-tools/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ RUN echo "Computed ${YQ_FILENAME} sha256sum: $(sha256sum ${YQ_FILENAME})" \
8989
&& mv ${YQ_FILENAME} /usr/local/bin/yq
9090

9191
# renovate: datasource=github-releases depName=cloudfoundry/bosh-cli
92-
ENV BOSH_CLI_VERSION 7.4.0
93-
ENV BOSH_CLI_SUM 98705c704beedb08621db48ab2f4cad42704b85aba36cc99f3a9dc2738ebc226
92+
ENV BOSH_CLI_VERSION 7.5.6
93+
ENV BOSH_CLI_SUM 6fb9bb085c3afe7eff6e9a4e783731aeb4f03baf5ce1caf7ed229f29a97e60ac
9494
ENV BOSH_CLI_FILENAME bosh-cli-${BOSH_CLI_VERSION}-linux-amd64
95-
ADD https://s3.amazonaws.com/bosh-cli-artifacts/${BOSH_CLI_FILENAME} .
95+
ADD https://github.com/cloudfoundry/bosh-cli/releases/download/v${BOSH_CLI_VERSION}/${BOSH_CLI_FILENAME} .
9696
RUN echo "Computed ${BOSH_CLI_FILENAME} sha256sum: $(sha256sum ${BOSH_CLI_FILENAME})" \
9797
&& echo "${BOSH_CLI_SUM} ${BOSH_CLI_FILENAME}" | sha256sum -c - \
9898
&& chmod +x ${BOSH_CLI_FILENAME} \

k8s-tools/k8s-tools_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require 'docker'
33
require 'serverspec'
44

5-
BOSH_CLI_VERSION="7.4.0" # renovate: datasource=github-releases depName=cloudfoundry/bosh-cli
5+
BOSH_CLI_VERSION="7.5.6" # renovate: datasource=github-releases depName=cloudfoundry/bosh-cli
66
YTT_VERSION="0.49.0" # renovate: datasource=github-releases depName=k14s/ytt
77
CREDHUB_CLI_VERSION='2.9.24' # renovate: datasource=github-releases depName=cloudfoundry/credhub-cli
88
KUSTOMIZE_VERSION="5.0.3" # renovate: datasource=github-releases depName=kubernetes-sigs/kustomize
@@ -129,6 +129,6 @@
129129
it "has the expected version of the Bosh CLI" do
130130
expect(
131131
command("bosh -v").stdout.strip
132-
).to match("version #{BOSH_CLI_VERSION}-")
132+
).to match("version #{BOSH_CLI_VERSION}$")
133133
end
134134
end

0 commit comments

Comments
 (0)