summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2022-09-29 12:19:17 -0700
committerBob Halley <halley@dnspython.org>2022-09-29 12:19:25 -0700
commitdb00e88aa09b492e614b2603a25a2121b648c4b7 (patch)
tree8bc5b1c27ea602b4970faf279c4706289dc528f1 /.github
parent531c8ba11fc97476adbbcde005f7433d06b259d1 (diff)
downloaddnspython-db00e88aa09b492e614b2603a25a2121b648c4b7.tar.gz
try to fix codeql
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/codeql-analysis.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index 2add673..239890c 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -42,6 +42,12 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ python -m pip install poetry
+ poetry install -E dnssec -E doh -E idna -E trio -E curio
+
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
@@ -52,11 +58,5 @@ jobs:
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
- - name: Install dependencies
- run: |
- python -m pip install --upgrade pip
- python -m pip install poetry
- poetry install -E dnssec -E doh -E idna -E trio -E curio
-
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2