Update .gitea/workflows/codeant.yml
Some checks failed
Codeant Security Scan / codeant-scan (push) Failing after 11s

This commit is contained in:
2026-03-28 02:31:20 +00:00
parent ce26bc1b69
commit f0ded5b4b6

View File

@@ -1,13 +1,13 @@
name: CodeAnt CLI Scan
name: Codeant Security Scan
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
#schedule:
# - cron: "0 0 * * *" # Daily scan
jobs:
codeant-scan:
@@ -21,21 +21,16 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'
- name: Install CodeAnt CLI
run: npm install -g codeant-cli
run: npm install -g @codeant/cli
- name: Run Scans
- name: Run CodeAnt Scan
env:
# The CLI automatically looks for this environment variable
CODEANT_API_TOKEN: ${{ secrets.CODEANT_API_TOKEN }}
# IMPORTANT: Use this EXACT variable name
CODEANT_API_TOKEN: ${{ secrets.CODEANT_API_KEY }}
run: |
echo "Running Secrets Scan..."
codeant secrets --all --fail-on HIGH
echo "Running Security Analysis..."
codeant security-analysis --all --fail-on HIGH
echo "Running Static Analysis (Code Quality)..."
codeant static-analysis --all --fail-on CRITICAL
# We use the universal 'scan' command which covers
# Secrets, SAST, and Quality in one go.
codeant scan --all --fail-on-severity HIGH