]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
try to fix codeql
authorBob Halley <halley@dnspython.org>
Thu, 29 Sep 2022 19:19:17 +0000 (12:19 -0700)
committerBob Halley <halley@dnspython.org>
Thu, 29 Sep 2022 19:19:25 +0000 (12:19 -0700)
.github/workflows/codeql-analysis.yml

index 2add6733bbf1f3853b26abb346699975f44452d1..239890c982983f89cdb7833be675ec1d2a551d19 100644 (file)
@@ -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