From d667f25ac5e6106f9cfdc2358b833458765b6832 Mon Sep 17 00:00:00 2001 From: "rfofspidernet.de (AIDA Special Comitee) = rfof-bitcoin.org - = rfofspidernet.de" <176731182+RFOF-NETWORK@users.noreply.github.com> Date: Sat, 6 Jun 2026 02:27:48 +0200 Subject: [PATCH 1/3] Add CodeQL workflow for security analysis --- .github/workflows/codeql.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 000000000..6b05d9f58 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,16 @@ +name: "CodeQL" + +permissions: + actions: read + contents: read + security-events: write + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + analyze: + uses: github/codeql-action/analyze@v3 From 6328bccbf66d8bf68c85ce2283c0b1a7b19f26d1 Mon Sep 17 00:00:00 2001 From: "rfofspidernet.de (AIDA Special Comitee) = rfof-bitcoin.org - = rfofspidernet.de" <176731182+RFOF-NETWORK@users.noreply.github.com> Date: Sat, 6 Jun 2026 10:27:12 +0200 Subject: [PATCH 2/3] Delete .github/workflows/codeql.yml --- .github/workflows/codeql.yml | 16 ---------------- 1 file changed, 16 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 6b05d9f58..000000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: "CodeQL" - -permissions: - actions: read - contents: read - security-events: write - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - analyze: - uses: github/codeql-action/analyze@v3 From 3431ddfcba278d3fcd115f9074f60f663f310ed8 Mon Sep 17 00:00:00 2001 From: "rfofspidernet.de (AIDA Special Comitee) = rfof-bitcoin.org - = rfofspidernet.de" <176731182+RFOF-NETWORK@users.noreply.github.com> Date: Sat, 6 Jun 2026 10:29:14 +0200 Subject: [PATCH 3/3] Update npm ci command to include legacy-peer-deps --- .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 acd138302..6a53f43d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: cache: npm - name: Install Dependencies - run: npm ci + run: npm ci --legacy-peer-deps - name: Run Markdownlint run: npm run lint:md