Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/catalog-sync-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
pull_request:
branches: [ main ]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
validate-catalog:
runs-on: ubuntu-latest
Expand All @@ -18,6 +22,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: "pip"

- name: Run Catalog Validation Script
run: python scripts/validate_plugins_catalog.py
4 changes: 4 additions & 0 deletions .github/workflows/check-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ on:
- "scripts/check-artifacts.sh"
- ".github/workflows/check-artifacts.yml"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
artifact-check:
runs-on: ubuntu-latest
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
push:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

Expand All @@ -21,6 +25,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Fetch base branch for diff
if: github.event_name == 'pull_request'
run: git fetch origin "${{ github.base_ref }}" --depth=1
Expand Down Expand Up @@ -50,6 +55,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Validate issue template labels
run: python scripts/validate_issue_template_labels.py

Expand All @@ -60,6 +66,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"

- name: Validate documentation anchors
run: python scripts/validate_doc_anchors.py
Expand All @@ -73,6 +80,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install backend system dependencies
run: sudo apt-get update && sudo apt-get install -y libcairo2-dev pkg-config
- name: Install backend development dependencies
Expand All @@ -95,6 +103,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install backend system dependencies
run: sudo apt-get update && sudo apt-get install -y libcairo2-dev pkg-config
- name: Install backend dependencies
Expand All @@ -117,6 +126,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install backend system dependencies
run: sudo apt-get update && sudo apt-get install -y libcairo2-dev pkg-config
- name: Install backend dependencies
Expand Down Expand Up @@ -146,6 +156,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install backend system dependencies
run: sudo apt-get update && sudo apt-get install -y libcairo2-dev pkg-config
- name: Install backend dependencies
Expand Down Expand Up @@ -177,6 +188,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install backend system dependencies
run: sudo apt-get update && sudo apt-get install -y libcairo2-dev pkg-config
- name: Install backend dependencies
Expand Down Expand Up @@ -226,6 +238,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install backend system dependencies
run: sudo apt-get update && sudo apt-get install -y libcairo2-dev pkg-config
- name: Install backend dependencies
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docker-hardening.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ on:
- ".github/workflows/docker-hardening.yml"
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
name: Build ${{ matrix.service }} image
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/plugin-integrity-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
- 'scripts/refresh_plugin_checksum.py'
- 'backend/secuscan/plugins.py'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
parser-integrity:
runs-on: ubuntu-latest
Expand All @@ -20,6 +24,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: "pip"

- name: Verify all plugin parser hashes match metadata
run: |
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/security-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
pull_request:
branches: [main]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read
security-events: write
Expand All @@ -19,6 +23,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install bandit
run: pip install bandit[toml]
- name: Run bandit security linter
Expand Down Expand Up @@ -52,6 +57,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Check all API routers have authentication
run: |
python -c "
Expand Down Expand Up @@ -86,6 +92,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Verify debug mode is off by default
run: |
python -c "
Expand Down Expand Up @@ -176,6 +183,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Validate .env.example safe defaults
run: |
python -c "
Expand Down Expand Up @@ -209,6 +217,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install pip-audit
run: pip install pip-audit
- name: Audit Python dependencies
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ on:
- ".github/workflows/smoke-test.yml"
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
shell-smoke:
name: start.sh shell smoke
Expand Down Expand Up @@ -67,6 +71,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"

# ── 3. Set up Node.js ──────────────────────────────────────────────────
# setup.sh checks for node + npm; frontend uses Vite on port 5173.
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/trivy-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ on:
- cron: "0 6 * * 1"
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read
security-events: write
Expand Down
Loading