Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/build-electron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: creditnexus-${{ matrix.os }}
path: dist-electron/**
16 changes: 8 additions & 8 deletions .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,15 @@ jobs:
uv run safety check --json --output safety-report.json || true

- name: Upload pip-audit results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: pip-audit-report
path: pip-audit-report.json
retention-days: 30

- name: Upload Safety results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: safety-report
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
npm audit --json > npm-audit-report.json || echo '{"vulnerabilities":{}}' > npm-audit-report.json

- name: Upload npm audit results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: npm-audit-report
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
uv run bandit -r app/ -f json -o bandit-report.json --severity-level all || true

- name: Upload Bandit results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: bandit-report
Expand Down Expand Up @@ -273,7 +273,7 @@ jobs:
uv run ruff check app/ --select S --output-format json > ruff-security-report.json || true

- name: Upload Ruff results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: ruff-security-report
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:
npm run lint -- --format json --output-file eslint-security-report.json || true

- name: Upload ESLint results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: eslint-security-report
Expand Down Expand Up @@ -346,7 +346,7 @@ jobs:
cmd_options: '-a'

- name: Upload ZAP results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: zap-report
Expand Down Expand Up @@ -409,7 +409,7 @@ jobs:
echo "See the Security tab for detailed findings." >> security-summary.md

- name: Upload summary report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: security-summary
path: security-summary.md
Expand Down
Loading