Skip to content

Commit 9fe622e

Browse files
author
Alvaro Muñoz
committed
Fix extensions workflow
Use right path to the extensions packs for each language
1 parent 025c597 commit 9fe622e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ jobs:
3636
gh repo clone github/codeql
3737
gh extension install github/gh-codeql
3838
gh codeql pack download "codeql/${{ matrix.language }}-queries"
39-
gh codeql pack install "${{ matrix.language }}/ext/"
40-
gh codeql pack install "${{ matrix.language }}/ext_library_sources/"
4139
gh codeql pack install "${{ matrix.language }}/lib"
4240
gh codeql pack install "${{ matrix.language }}/src"
4341
gh codeql pack install "${{ matrix.language }}/test"
@@ -90,6 +88,8 @@ jobs:
9088
GITHUB_TOKEN: ${{ github.token }}
9189
run: |
9290
gh extension install github/gh-codeql
93-
gh codeql pack install "githubsecuritylab/${{ matrix.language }}-extensions"
94-
gh codeql pack create "githubsecuritylab/${{ matrix.language }}-extensions"
91+
gh codeql pack install "${{ matrix.language }}/ext/"
92+
gh codeql pack install "${{ matrix.language }}/ext_library_sources/"
93+
gh codeql pack create "${{ matrix.language }}/ext/"
94+
gh codeql pack create "${{ matrix.language }}/ext_library_sources/"
9595

0 commit comments

Comments
 (0)