diff options
author | Michael Kubacki <michael.kubacki@microsoft.com> | 2023-10-06 19:01:15 -0400 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2023-10-07 00:24:38 +0000 |
commit | 82191f8a0e57f674657c7461189e194b6f863e26 (patch) | |
tree | 340cbead231f285ec181a2b6afb1a35de0d12125 | |
parent | 6439c7335670e487bf648ce714c2946a9585bdee (diff) | |
download | edk2-82191f8a0e57f674657c7461189e194b6f863e26.tar.gz |
.github: Fix Python version (to 3.11)
Build was previously using 3.11. Using 3.12 now that is is released.
To allow scripts to take time to update, fix to 3.11.
Cc: Sean Brogan <sean.brogan@microsoft.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
Reviewed-by: Sean Brogan <sean.brogan@microsoft.com>
-rw-r--r-- | .github/workflows/codeql-analysis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index cc7f06f7b5..992b3b6f65 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -85,7 +85,7 @@ jobs: - name: Install Python
uses: actions/setup-python@v4
with:
- python-version: '3.10.6'
+ python-version: '3.11'
cache: 'pip'
cache-dependency-path: 'pip-requirements.txt'
|