From b84e06ae4244a3d006b60c387fb552bcccceb7cb Mon Sep 17 00:00:00 2001 From: Michael Keller Date: Mon, 11 Dec 2023 23:40:38 +1300 Subject: [PATCH] CI/CD: Fix 'Snap USNs' Action. Fix the 'Snap USNs' action. According to https://bugs.launchpad.net/lazr.restfulclient/+bug/2041407 the an incompatibility is introduced by the move from python 3.11 to 3.12, and a workaround is to pin the version to 3.11. Signed-off-by: Michael Keller --- .github/workflows/snap_usns.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/snap_usns.yml b/.github/workflows/snap_usns.yml index 842925ab4..af82d97c5 100644 --- a/.github/workflows/snap_usns.yml +++ b/.github/workflows/snap_usns.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.x' + python-version: '3.11' - name: Install Python dependencies uses: insightsengineering/pip-action@v2.0.0