From a27b01a42cffcbd458c3c88f74fe913b990345e2 Mon Sep 17 00:00:00 2001 From: BryanFRD Date: Mon, 30 Mar 2026 20:11:05 +0000 Subject: [PATCH 1/3] chore: add CodeQL workflow and badge --- .github/workflows/codeql.yml | 24 ++++++++++++++++++++++++ README.md | 1 + 2 files changed, 25 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 0000000..534f725 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,24 @@ +name: CodeQL + +on: + push: + branches: [main] + pull_request: + branches: [main] + schedule: + - cron: "0 6 * * 1" + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + security-events: write + steps: + - uses: actions/checkout@v4 + - uses: github/codeql-action/init@v3 + with: + languages: actions + - uses: github/codeql-action/analyze@v3 + with: + category: /language:actions diff --git a/README.md b/README.md index 2e21c5f..4d3d6e5 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ [![Release](https://github.com/FerrFlow-Org/FerrFlow/actions/workflows/release.yml/badge.svg)](https://github.com/FerrFlow-Org/FerrFlow/actions/workflows/release.yml) [![Latest release](https://img.shields.io/github/v/release/FerrFlow-Org/FerrFlow)](https://github.com/FerrFlow-Org/FerrFlow/releases/latest) [![Coverage](https://codecov.io/gh/FerrFlow-Org/FerrFlow/graph/badge.svg)](https://codecov.io/gh/FerrFlow-Org/FerrFlow) +[![CodeQL](https://github.com/FerrFlow-Org/FerrFlow/actions/workflows/codeql.yml/badge.svg)](https://github.com/FerrFlow-Org/FerrFlow/actions/workflows/codeql.yml) [![License](https://img.shields.io/github/license/FerrFlow-Org/FerrFlow)](LICENSE) Universal semantic versioning for monorepos and classic repos. From 575c73752705be336d899bfa8b49a518c9b7fa63 Mon Sep 17 00:00:00 2001 From: BryanFRD Date: Mon, 30 Mar 2026 20:16:47 +0000 Subject: [PATCH 2/3] chore: remove duplicate CodeQL workflow Default setup already covers actions, javascript-typescript, and rust. --- .github/workflows/codeql.yml | 24 ------------------------ 1 file changed, 24 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 534f725..0000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: CodeQL - -on: - push: - branches: [main] - pull_request: - branches: [main] - schedule: - - cron: "0 6 * * 1" - -jobs: - analyze: - name: Analyze - runs-on: ubuntu-latest - permissions: - security-events: write - steps: - - uses: actions/checkout@v4 - - uses: github/codeql-action/init@v3 - with: - languages: actions - - uses: github/codeql-action/analyze@v3 - with: - category: /language:actions From bad84526313f394eaa818965bf15a2eb7e90c0a8 Mon Sep 17 00:00:00 2001 From: BryanFRD Date: Mon, 30 Mar 2026 20:17:21 +0000 Subject: [PATCH 3/3] chore: remove CodeQL badge (default setup has no workflow file) --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 4d3d6e5..2e21c5f 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ [![Release](https://github.com/FerrFlow-Org/FerrFlow/actions/workflows/release.yml/badge.svg)](https://github.com/FerrFlow-Org/FerrFlow/actions/workflows/release.yml) [![Latest release](https://img.shields.io/github/v/release/FerrFlow-Org/FerrFlow)](https://github.com/FerrFlow-Org/FerrFlow/releases/latest) [![Coverage](https://codecov.io/gh/FerrFlow-Org/FerrFlow/graph/badge.svg)](https://codecov.io/gh/FerrFlow-Org/FerrFlow) -[![CodeQL](https://github.com/FerrFlow-Org/FerrFlow/actions/workflows/codeql.yml/badge.svg)](https://github.com/FerrFlow-Org/FerrFlow/actions/workflows/codeql.yml) [![License](https://img.shields.io/github/license/FerrFlow-Org/FerrFlow)](LICENSE) Universal semantic versioning for monorepos and classic repos.