From 81f5577e77ea3c4f44631120ec0073c6488cbea5 Mon Sep 17 00:00:00 2001 From: jmeridth Date: Wed, 12 Jul 2023 11:17:17 -0500 Subject: [PATCH] chore: remove codeql action temporarily until we get GHAS enabled Signed-off-by: jmeridth --- .github/workflows/codeql-analysis.yml | 53 --------------------------- 1 file changed, 53 deletions(-) delete mode 100644 .github/workflows/codeql-analysis.yml diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml deleted file mode 100644 index 135c891..0000000 --- a/.github/workflows/codeql-analysis.yml +++ /dev/null @@ -1,53 +0,0 @@ -name: "Code Scanning - Action" - -on: - push: - branches: [main] - pull_request: - branches: [main] - schedule: - # https://crontab.guru/#30_1_*_*_0 == At 1:30 on Sunday - - cron: '30 1 * * 0' - -jobs: - CodeQL-Build: - # CodeQL runs on ubuntu-latest, windows-latest, and macos-latest - runs-on: ubuntu-latest - - permissions: - # required for all workflows - security-events: write - - # only required for workflows in private repositories - actions: read - contents: read - - steps: - - name: Checkout repository - uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 # (latest, untagged) - - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@4b7eb74ef5270ad9d36277adf9bfc8b3a8282770 # (latest, untagged) - # Override language selection by uncommenting this and choosing your languages - # with: - # languages: go, javascript, csharp, python, cpp, java, ruby - - # Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java). - # If this step fails, then you should remove it and run the build manually (see below). - - name: Autobuild - uses: github/codeql-action/autobuild@4b7eb74ef5270ad9d36277adf9bfc8b3a8282770 # (latest, untagged) - - # ℹī¸ Command-line programs to run using the OS shell. - # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun - - # ✏ī¸ If the Autobuild fails above, remove it and uncomment the following - # three lines and modify them (or add more) to build your code if your - # project uses a compiled language - - #- run: | - # make bootstrap - # make release - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@4b7eb74ef5270ad9d36277adf9bfc8b3a8282770 # (latest, untagged)