mirror of
https://github.com/acidanthera/audk.git
synced 2025-09-24 18:27:49 +02:00
.github/workflows: Don't install Python twice in CodeQL
Signed-off-by: Savva Mitrofanov <savvamtr@gmail.com>
This commit is contained in:
parent
0764246038
commit
86005c4c0c
21
.github/workflows/codeql-analysis.yml
vendored
21
.github/workflows/codeql-analysis.yml
vendored
@ -69,10 +69,14 @@ jobs:
|
|||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Install Python
|
- name: Install Dependencies
|
||||||
uses: actions/setup-python@v4
|
run: |
|
||||||
with:
|
choco install make nasm zip --no-progress
|
||||||
python-version: '3.10.6'
|
choco install iasl --no-progress --version=2017.11.10
|
||||||
|
|
||||||
|
- name: CI Bootstrap
|
||||||
|
run: |
|
||||||
|
src=$(curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
|
||||||
|
|
||||||
# Initializes the CodeQL tools for scanning.
|
# Initializes the CodeQL tools for scanning.
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
@ -84,15 +88,6 @@ jobs:
|
|||||||
config-file: ./.github/codeql/codeql-config.yml
|
config-file: ./.github/codeql/codeql-config.yml
|
||||||
# Note: Add new queries to codeql-config.yml file as they are enabled.
|
# Note: Add new queries to codeql-config.yml file as they are enabled.
|
||||||
|
|
||||||
- name: Install Dependencies
|
|
||||||
run: |
|
|
||||||
choco install make nasm zip --no-progress
|
|
||||||
choco install iasl --no-progress --version=2017.11.10
|
|
||||||
|
|
||||||
- name: CI Bootstrap
|
|
||||||
run: |
|
|
||||||
src=$(curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
|
|
||||||
|
|
||||||
- name: Init UDK submodules
|
- name: Init UDK submodules
|
||||||
run: |
|
run: |
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
|
Loading…
x
Reference in New Issue
Block a user