Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@
contents: read
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6

Check warning on line 59 in .github/workflows/benchmark.yml

View workflow job for this annotation

GitHub Actions / Lint & Static Analysis

artipacked

benchmark.yml:59: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false

- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22"

Expand Down Expand Up @@ -119,7 +119,7 @@
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6

- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
path: catalyst-plugins

- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22"

Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:
path: catalyst-plugins

- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22"

Expand Down Expand Up @@ -381,7 +381,7 @@ jobs:
path: catalyst-plugins

- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dependabot-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6

- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22"

Expand Down Expand Up @@ -78,7 +78,7 @@
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22"

Expand All @@ -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 @@ -155,7 +155,7 @@
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22"

Expand All @@ -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
Loading