From dfc461b1ed23c98c1be752e1bf9be92b13fea051 Mon Sep 17 00:00:00 2001 From: Aleksei Fedorov Date: Sat, 7 Mar 2026 00:22:44 +0400 Subject: [PATCH] Update paths in security workflow configuration --- .github/workflows/security.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/security.yaml b/.github/workflows/security.yaml index b441b12..2964646 100644 --- a/.github/workflows/security.yaml +++ b/.github/workflows/security.yaml @@ -43,7 +43,7 @@ jobs: - name: Bandit scan run: | - bandit -c .github/security/bandit.yml -r . -f json -o bandit-report.json + bandit -c .github/workflows/security/bandit.yml -r . -f json -o bandit-report.json ######################################## # Python dependency scan @@ -86,7 +86,7 @@ jobs: run: | if [ -f package.json ]; then npm install eslint eslint-plugin-security - npx eslint . -c .github/security/eslint-security.json || true + npx eslint . -c .github/workflows/security/eslint-security.json || true fi ######################################## @@ -105,7 +105,7 @@ jobs: with: scan-type: fs scan-ref: . - config: .github/security/trivy.yaml + config: .github/workflows/security/trivy.yaml ######################################## # Upload reports