Skip to content
Merged
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
5 changes: 3 additions & 2 deletions .github/workflows/release-update-repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@ jobs:
image:
- debian:11
- debian:12
- debian:13
- ubuntu:22.04
- ubuntu:latest
runs-on: ubuntu-latest
Expand All @@ -335,8 +336,8 @@ jobs:
apt update
apt install -y wget gnupg

wget -q -O - ${CLAW_URL}/debian/cli.cloudfoundry.org.key | apt-key add -
echo "deb ${CLAW_URL}/debian stable main" | tee /etc/apt/sources.list.d/cloudfoundry-cli.list
wget -q -O - ${CLAW_URL}/debian/cli.cloudfoundry.org.key | gpg --dearmor -o /usr/share/keyrings/cloudfoundry-keyring.gpg
Copy link
Contributor

@anujc25 anujc25 Sep 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We are changing this line to align with our documentation right?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes and also apt-key is deprecated. That's the reason we changed the documentation but this was missed.

echo "deb [signed-by=/usr/share/keyrings/cloudfoundry-keyring.gpg] ${CLAW_URL}/debian stable main" | tee /etc/apt/sources.list.d/cloudfoundry-cli.list

apt update
apt install -y cf${VERSION_MAJOR}-cli
Expand Down
Loading