diff --git a/.github/workflows/__export-file-baseline-information.yml b/.github/workflows/__export-file-baseline-information.yml index b466345c6..7b4969ad0 100644 --- a/.github/workflows/__export-file-baseline-information.yml +++ b/.github/workflows/__export-file-baseline-information.yml @@ -59,7 +59,6 @@ jobs: languages: javascript tools: ${{ steps.prepare-test.outputs.tools-url }} env: - CODEQL_ENABLE_EXPERIMENTAL_FEATURES_SWIFT: true CODEQL_FILE_BASELINE_INFORMATION: true - uses: ./../action/.github/actions/setup-swift with: diff --git a/.github/workflows/__test-local-codeql.yml b/.github/workflows/__test-local-codeql.yml index 87b95b9ce..3a5470ed7 100644 --- a/.github/workflows/__test-local-codeql.yml +++ b/.github/workflows/__test-local-codeql.yml @@ -55,9 +55,13 @@ jobs: CODEQL_URL: ${{ steps.prepare-test.outputs.tools-url }} run: | wget "$CODEQL_URL" - - uses: ./../action/init + - id: init + uses: ./../action/init with: tools: ./codeql-bundle.tar.gz + - uses: ./../action/.github/actions/setup-swift + with: + codeql-path: ${{ steps.init.outputs.codeql-path }} - name: Build code shell: bash run: ./build.sh diff --git a/pr-checks/checks/export-file-baseline-information.yml b/pr-checks/checks/export-file-baseline-information.yml index 042070439..1b2b6e94b 100644 --- a/pr-checks/checks/export-file-baseline-information.yml +++ b/pr-checks/checks/export-file-baseline-information.yml @@ -8,7 +8,6 @@ steps: languages: javascript tools: ${{ steps.prepare-test.outputs.tools-url }} env: - CODEQL_ENABLE_EXPERIMENTAL_FEATURES_SWIFT: true CODEQL_FILE_BASELINE_INFORMATION: true - uses: ./../action/.github/actions/setup-swift with: diff --git a/pr-checks/checks/test-local-codeql.yml b/pr-checks/checks/test-local-codeql.yml index b999897bb..79bf76199 100644 --- a/pr-checks/checks/test-local-codeql.yml +++ b/pr-checks/checks/test-local-codeql.yml @@ -9,9 +9,13 @@ steps: CODEQL_URL: ${{ steps.prepare-test.outputs.tools-url }} run: | wget "$CODEQL_URL" - - uses: ./../action/init + - id: init + uses: ./../action/init with: tools: ./codeql-bundle.tar.gz + - uses: ./../action/.github/actions/setup-swift + with: + codeql-path: ${{ steps.init.outputs.codeql-path }} - name: Build code shell: bash run: ./build.sh