From f742f99d29fb5ae8deeaa92c43d268b1c06da7f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristian=20Pallar=C3=A9s?= Date: Thu, 2 Apr 2026 12:09:52 +0200 Subject: [PATCH] chore(audit): fix audit fix workflow --- .github/workflows/audit-fix.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/audit-fix.yml b/.github/workflows/audit-fix.yml index 64bbe5e..111c7bc 100644 --- a/.github/workflows/audit-fix.yml +++ b/.github/workflows/audit-fix.yml @@ -26,7 +26,7 @@ jobs: run: npm ci - name: Run npm audit fix - run: npm audit fix --force + run: npm audit fix || npm audit fix --force || true - name: Create pull request env: @@ -48,7 +48,7 @@ jobs: gh pr create \ --title "chore(deps): npm audit fix" \ - --body "Automated security fixes via \`npm audit fix --force\`." \ + --body "Automated security fixes via \`npm audit fix\`." \ --label "audit: fix" \ --base main \ --head "$BRANCH"