From 581716fd4c4672c88e394adaa81655655a8ee752 Mon Sep 17 00:00:00 2001 From: 1024jp <1024jp@wolfrosch.com> Date: Mon, 24 Jun 2024 13:30:14 +0900 Subject: [PATCH] Delete .github/workflows/CodeQL.yml --- .github/workflows/CodeQL.yml | 44 ------------------------------------ 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/CodeQL.yml diff --git a/.github/workflows/CodeQL.yml b/.github/workflows/CodeQL.yml deleted file mode 100644 index c61b7a7..0000000 --- a/.github/workflows/CodeQL.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: CodeQL - -on: - push: - branches: [main] - pull_request: - branches: [main] - schedule: - - cron: '28 17 * * 3' - -env: - CODEQL_ENABLE_EXPERIMENTAL_FEATURES_SWIFT: true - DEVELOPER_DIR: /Applications/Xcode_16.0.app - -jobs: - analyze: - name: Analyze - runs-on: macos-14 - permissions: - actions: read - contents: read - security-events: write - - strategy: - fail-fast: false - matrix: - language: ['swift'] - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Initialize CodeQL - uses: github/codeql-action/init@v2 - with: - languages: ${{ matrix.language }} - - - run: swift build - if: matrix.language == 'swift' - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 - with: - category: "/language:${{matrix.language}}"