From f3e2abc74ae503511a093ce1ec40f3144b68c281 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 13:37:26 +0000 Subject: [PATCH 1/2] ci: Bump actions/cache from 4 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 435c29c..f403941 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -112,7 +112,7 @@ jobs: cache: 'npm' - name: Cache Electron binary - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.cache/electron key: electron-linux-${{ hashFiles('**/package-lock.json') }} From 0a299e9b02a5c9b77c9433f6c69861166a634726 Mon Sep 17 00:00:00 2001 From: NeuroKoder3 Date: Fri, 3 Jul 2026 16:04:59 -0500 Subject: [PATCH 2/2] Upgrade CodeQL action to version 4 Updated CodeQL action versions to v4 for initialization and analysis. Signed-off-by: NeuroKoder3 --- .github/workflows/codeql.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index f75b49d..1e32e6d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -19,7 +19,6 @@ jobs: name: Analyze (${{ matrix.language }}) runs-on: ubuntu-latest timeout-minutes: 60 - strategy: fail-fast: false matrix: @@ -30,14 +29,13 @@ jobs: uses: actions/checkout@v4 - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} build-mode: none queries: +security-extended - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 with: category: "/language:${{ matrix.language }}" - upload: always