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 <fabiobaltieri@google.com>
This commit is contained in:
parent
0ef608a0ab
commit
78a75b78bf
5
.github/workflows/compliance.yml
vendored
5
.github/workflows/compliance.yml
vendored
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue