From 78a75b78bfb0a5a8321d85de9b90162c7b7e212f Mon Sep 17 00:00:00 2001 From: Fabio Baltieri Date: Mon, 29 Apr 2024 13:49:26 +0000 Subject: [PATCH] ci: compliance: upgrade to Python 3.11 The behavior of glob() changedin Python 3.11 and runing the old one means we are missing some changes that trigger a compliance failure when ran on an updated system. Upgrade to 3.11 so those are caught in CI. Signed-off-by: Fabio Baltieri --- .github/workflows/compliance.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/compliance.yml b/.github/workflows/compliance.yml index 5e6e2cff9a..8355055512 100644 --- a/.github/workflows/compliance.yml +++ b/.github/workflows/compliance.yml @@ -17,6 +17,11 @@ jobs: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: 3.11 + - name: cache-pip uses: actions/cache@v4 with: