Add debian 13 to release test matrix[v8] by gururajsh · Pull Request #3583 · cloudfoundry/cli

@gururajsh

This PR

  1. Adds newly released Debian 13 to CLI's release test matrix.
  2. Removes the usage of apt-key add which has been deprecated.

@gururajsh

anujc25

Choose a reason for hiding this comment

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

LGTM. Thanks.


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

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?

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.

Samze