From 9815f4ef2a927bb4dec34d9c78db9bd866d98e59 Mon Sep 17 00:00:00 2001 From: Gwynne Raskind Date: Thu, 5 Dec 2024 01:18:25 -0600 Subject: [PATCH] Remove remaining vestiges of CodeQL --- .github/workflows/run-unit-tests.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index f398368..3de12a1 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -42,11 +42,6 @@ on: required: false default: true description: "Set to 'true' to run the SwiftPM public API breakage check. Defaults to 'true'." - with_gh_codeql: - type: boolean - required: false - default: true - description: "Set to 'true' to run CodeQL checks. Defaults to 'true'." with_deps_submission: type: boolean required: false @@ -117,27 +112,6 @@ jobs: git config --global --add safe.directory "${GITHUB_WORKSPACE}" swift package ${PACKAGE_ROOT} diagnose-api-breaking-changes origin/main ${EXTRA_FLAGS} -# gh-codeql: -# if: ${{ inputs.with_gh_codeql && !(github.event.pull_request.draft || false) }} -# runs-on: ubuntu-latest -# permissions: { actions: write, contents: read, security-events: write } -# timeout-minutes: 30 -# steps: -# - name: Install latest Swift toolchain -# uses: vapor/swiftly-action@v0.1 -# with: { toolchain: latest } -# - name: Check out code -# uses: actions/checkout@v4 -# - name: Fix Git configuration -# run: 'git config --global --add safe.directory "${GITHUB_WORKSPACE}"' -# - name: Initialize CodeQL -# uses: github/codeql-action/init@v3 -# with: { languages: swift } -# - name: Perform build -# run: 'swift build ${PACKAGE_ROOT} ${EXTRA_FLAGS}' -# - name: Run CodeQL analyze -# uses: github/codeql-action/analyze@v3 - linux-unit: if: ${{ !(github.event.pull_request.draft || false) }} strategy: