From 771cc0fac770161a092d73bb0b61cff8f300c18a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Wallner-G=C3=A9hri?= <68284225+mpwg@users.noreply.github.com> Date: Tue, 28 Apr 2026 19:25:37 +0200 Subject: [PATCH] Comment out CodeQL workflow configuration Commented out the entire CodeQL workflow configuration in codeql.yml. --- .github/workflows/codeql.yml | 128 +++++++++++++++++------------------ 1 file changed, 64 insertions(+), 64 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 497c387..1a75471 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -1,75 +1,75 @@ name: CodeQL -on: - push: - branches: - - main - paths: - - "Symi/**" - - "SymiTests/**" - - "Symi.xcodeproj/**" - - ".github/workflows/codeql.yml" - pull_request: - branches: - - main - paths: - - "Symi/**" - - "SymiTests/**" - - "Symi.xcodeproj/**" - - ".github/workflows/codeql.yml" - schedule: - - cron: "23 4 * * 1" - workflow_dispatch: +# on: +# push: +# branches: +# - main +# paths: +# - "Symi/**" +# - "SymiTests/**" +# - "Symi.xcodeproj/**" +# - ".github/workflows/codeql.yml" +# pull_request: +# branches: +# - main +# paths: +# - "Symi/**" +# - "SymiTests/**" +# - "Symi.xcodeproj/**" +# - ".github/workflows/codeql.yml" +# schedule: +# - cron: "23 4 * * 1" +# workflow_dispatch: -jobs: - analyze: - name: Analyze (Swift) - runs-on: macos-26 - timeout-minutes: 45 - permissions: - actions: read - contents: read - security-events: write - env: - CODEQL_DESTINATION: platform=macOS,arch=arm64,variant=Mac Catalyst +# jobs: +# analyze: +# name: Analyze (Swift) +# runs-on: macos-26 +# timeout-minutes: 45 +# permissions: +# actions: read +# contents: read +# security-events: write +# env: +# CODEQL_DESTINATION: platform=macOS,arch=arm64,variant=Mac Catalyst - strategy: - fail-fast: false - matrix: - language: - - swift +# strategy: +# fail-fast: false +# matrix: +# language: +# - swift - steps: - - name: Checkout - uses: actions/checkout@v6 +# steps: +# - name: Checkout +# uses: actions/checkout@v6 - - name: Xcode 26.4 auswählen - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: "26.4" +# - name: Xcode 26.4 auswählen +# uses: maxim-lobanov/setup-xcode@v1 +# with: +# xcode-version: "26.4" - - name: Xcode-Version ausgeben - run: | - xcodebuild -version - xcode-select -p +# - name: Xcode-Version ausgeben +# run: | +# xcodebuild -version +# xcode-select -p - - name: CodeQL initialisieren - uses: github/codeql-action/init@v4 - with: - languages: ${{ matrix.language }} - build-mode: manual +# - name: CodeQL initialisieren +# uses: github/codeql-action/init@v4 +# with: +# languages: ${{ matrix.language }} +# build-mode: manual - - name: Swift Packages auflösen - run: xcodebuild -resolvePackageDependencies -project Symi.xcodeproj -scheme Symi +# - name: Swift Packages auflösen +# run: xcodebuild -resolvePackageDependencies -project Symi.xcodeproj -scheme Symi - - name: App für CodeQL bauen - run: | - xcodebuild build \ - -project Symi.xcodeproj \ - -scheme Symi \ - -destination "${CODEQL_DESTINATION}" \ - -derivedDataPath "${RUNNER_TEMP}/DerivedData" \ - CODE_SIGNING_ALLOWED=NO +# - name: App für CodeQL bauen +# run: | +# xcodebuild build \ +# -project Symi.xcodeproj \ +# -scheme Symi \ +# -destination "${CODEQL_DESTINATION}" \ +# -derivedDataPath "${RUNNER_TEMP}/DerivedData" \ +# CODE_SIGNING_ALLOWED=NO - - name: CodeQL analysieren - uses: github/codeql-action/analyze@v4 +# - name: CodeQL analysieren +# uses: github/codeql-action/analyze@v4