From 4c20e2c7609191b4d5ed08e1ef901aedc64f4004 Mon Sep 17 00:00:00 2001 From: keith Date: Sat, 16 May 2026 11:13:17 -0600 Subject: [PATCH 1/2] Disable release npm cache on self-hosted runners --- .github/workflows/release.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7f99a283..a7ac321a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,8 +65,6 @@ jobs: uses: actions/setup-node@v4 with: node-version: "22" - cache: "npm" - cache-dependency-path: webui/package-lock.json - name: Build webui working-directory: webui From 5a093555c865a59b8b0f100162f2518ec698d0ba Mon Sep 17 00:00:00 2001 From: keith Date: Sat, 16 May 2026 11:17:25 -0600 Subject: [PATCH 2/2] Disable CodeQL until code scanning is enabled --- .github/workflows/codeql.yml | 37 ------------------------------------ 1 file changed, 37 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 ab65ecbc..00000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: CodeQL - -on: - pull_request: - branches: ["master", "main"] - schedule: - - cron: "27 4 * * 1" - -permissions: - security-events: write - packages: read - actions: read - contents: read - -jobs: - analyze: - name: Analyze - runs-on: [self-hosted, Linux, X64] - strategy: - fail-fast: false - matrix: - language: ["javascript-typescript", "rust"] - - steps: - - name: Checkout - uses: actions/checkout@v6 - - - name: Initialize CodeQL - uses: github/codeql-action/init@v4 - with: - languages: ${{ matrix.language }} - - - name: Autobuild - uses: github/codeql-action/autobuild@v4 - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v4