From 5135e3d153db86a516937ba2e78deee760701b06 Mon Sep 17 00:00:00 2001 From: Mike Fairhurst Date: Fri, 12 Sep 2025 21:53:46 -0700 Subject: [PATCH] Add pack install per language --- .github/workflows/copilot-setup-steps.yaml | 46 +++++++++++++++++++++- 1 file changed, 44 insertions(+), 2 deletions(-) diff --git a/.github/workflows/copilot-setup-steps.yaml b/.github/workflows/copilot-setup-steps.yaml index 36b63b7..af4ab69 100644 --- a/.github/workflows/copilot-setup-steps.yaml +++ b/.github/workflows/copilot-setup-steps.yaml @@ -34,5 +34,47 @@ jobs: - name: Copilot Setup - Install CodeQL uses: ./.github/actions/install-codeql - - name: Copilot Setup - Install CodeQL packs - uses: ./.github/actions/install-codeql-packs \ No newline at end of file + - name: Copilot Setup - Install CodeQL packs (common) + uses: ./.github/actions/install-codeql-packs + with: + language: common + + - name: Copilot Setup - Install CodeQL packs (cpp) + uses: ./.github/actions/install-codeql-packs + with: + language: cpp + + - name: Copilot Setup - Install CodeQL packs (csharp) + uses: ./.github/actions/install-codeql-packs + with: + language: csharp + + - name: Copilot Setup - Install CodeQL packs (go) + uses: ./.github/actions/install-codeql-packs + with: + language: go + + - name: Copilot Setup - Install CodeQL packs (java) + uses: ./.github/actions/install-codeql-packs + with: + language: java + + - name: Copilot Setup - Install CodeQL packs (javascript) + uses: ./.github/actions/install-codeql-packs + with: + language: javascript + + - name: Copilot Setup - Install CodeQL packs (python) + uses: ./.github/actions/install-codeql-packs + with: + language: python + + - name: Copilot Setup - Install CodeQL packs (ruby) + uses: ./.github/actions/install-codeql-packs + with: + language: ruby + + - name: Copilot Setup - Install CodeQL packs (swift) + uses: ./.github/actions/install-codeql-packs + with: + language: swift \ No newline at end of file