Skip to content
Open
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/dependabot-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
- name: Audit base branch for diff
run: |
git stash
git checkout origin/${{ github.base_ref }} 2>/dev/null || true

Check failure on line 107 in .github/workflows/dependabot-review.yml

View workflow job for this annotation

GitHub Actions / Lint & Static Analysis

template-injection

dependabot-review.yml:107: code injection via template expansion: may expand into attacker-controllable code
pnpm install --config.minimumReleaseAge=0 2>/dev/null || true
(cd catalyst-backend && pnpm audit 2>&1 | tee /tmp/base-backend-audit.txt || true)
(cd catalyst-frontend && pnpm audit 2>&1 | tee /tmp/base-frontend-audit.txt || true)
Expand Down Expand Up @@ -168,7 +168,7 @@
run: |
echo "## 馃摝 Lockfile Change Analysis" >> $GITHUB_STEP_SUMMARY

LOCKFILE_DIFF=$(git diff origin/${{ github.base_ref }}...HEAD -- pnpm-lock.yaml 2>/dev/null || true)

Check failure on line 171 in .github/workflows/dependabot-review.yml

View workflow job for this annotation

GitHub Actions / Lint & Static Analysis

template-injection

dependabot-review.yml:171: code injection via template expansion: may expand into attacker-controllable code

if [ -z "$LOCKFILE_DIFF" ]; then
echo "No lockfile changes detected" >> $GITHUB_STEP_SUMMARY
Expand Down Expand Up @@ -226,7 +226,7 @@
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6

- name: Run Scorecard
uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3
uses: ossf/scorecard-action@2d1146689b8cda280b9bc96326124645441f03bc # v2.4.4
continue-on-error: true
with:
results_file: results.sarif
Expand Down
Loading