From 2621234083b47e4a33547a2cabe793339e8acade Mon Sep 17 00:00:00 2001 From: Gerrod Ubben Date: Tue, 14 Jan 2025 23:47:41 -0500 Subject: [PATCH] Restrain podman-compose==1.1.0 for tests to deal with upstream bug --- .github/actions/test_image/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/test_image/action.yml b/.github/actions/test_image/action.yml index 5e251c59..6a71f416 100644 --- a/.github/actions/test_image/action.yml +++ b/.github/actions/test_image/action.yml @@ -15,7 +15,8 @@ runs: - name: Install httpie and podman-compose run: | echo "HTTPIE_CONFIG_DIR=$GITHUB_WORKSPACE/.ci/assets/httpie/" >> $GITHUB_ENV - pip install httpie podman-compose + # Constrain while bug is present: https://github.com/containers/podman-compose/issues/1059 + pip install httpie podman-compose==1.1.0 shell: bash - name: Test image with upgrade in s6 mode (pulp)