From 024b83bbdbbea1f9b6c3d3c707a4822ee66bffaf Mon Sep 17 00:00:00 2001 From: Tomas Janousek Date: Wed, 14 Feb 2024 17:09:54 +0000 Subject: [PATCH] Render template ../cookiecutter-python-cli at cdc1a35d81 --- .github/workflows/check.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index 4902713..7225847 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -122,12 +122,14 @@ jobs: shell: bash run: | set -ex - grep "Suites: testing" /etc/apt/sources.list.d/debian.sources || exit 0 + grep " noble " /etc/apt/sources.list || exit 0 + apt install -y debian-archive-keyring + ln -s /usr/share/keyrings/debian-archive-keyring.gpg /etc/apt/trusted.gpg.d/ python3_pycodestyle=$(dpkg-query --showformat='${Version}\n' --show python3-pycodestyle) python3_flake8=$(dpkg-query --showformat='${Version}\n' --show python3-flake8) if [[ $python3_pycodestyle == 2.11.* && $python3_flake8 == 5.* ]]; then echo 'deb https://deb.debian.org/debian unstable main' >/etc/apt/sources.list.d/debian-unstable.list - echo 'APT::Default-Release "testing";' >/etc/apt/apt.conf.d/debian-release + echo 'APT::Default-Release "noble";' >/etc/apt/apt.conf.d/debian-release apt update apt install -t unstable -y python3-flake8 fi