Skip to content

Commit 417948b

Browse files
committed
Standardize on Python 3.9 per the user manual
1 parent fda51ad commit 417948b

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.github/actions/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ inputs:
1616
runs:
1717
using: composite
1818
steps:
19+
- name: Install Python
20+
uses: actions/setup-python@v4
21+
with:
22+
python-version: "3.9"
23+
1924
- name: Install CodeQL library packs
2025
shell: bash
2126
env:

.github/actions/install-codeql-packs/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ inputs:
1616
runs:
1717
using: composite
1818
steps:
19+
- name: Install Python
20+
uses: actions/setup-python@v4
21+
with:
22+
python-version: "3.9"
23+
1924
- name: Install CodeQL library packs
2025
shell: bash
2126
env:

.github/workflows/verify-standard-library-dependencies.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ jobs:
4545
uses: actions/checkout@v2
4646

4747
- name: Setup Python 3
48-
uses: actions/setup-python@v2
48+
uses: actions/setup-python@v4
4949
with:
50-
python-version: "3.x"
50+
python-version: "3.9"
5151

5252
- name: Cache CodeQL
5353
id: cache-codeql

0 commit comments

Comments
 (0)