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
2 changes: 1 addition & 1 deletion .github/workflows/build-gossamer-gui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
targets: wasm32-unknown-unknown

- name: Install just
uses: taiki-e/install-action@v2.86.5
uses: taiki-e/install-action@v2.86.6

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 HIGH RISK

Suggestion: Pin this third-party action to a full 40-character commit SHA to ensure build immutability and security. \n\nTry running the following prompt in your IDE agent:\n> Find the full git commit SHA for taiki-e/install-action@v2.86.6 and update the uses field in .github/workflows/build-gossamer-gui.yml to use the SHA with the version tag in a comment (e.g., uses: taiki-e/install-action@ # v2.86.6).

See Issue in Codacy

with:
# Pin an explicit modern just: the Justfile uses `import?`
# (optional import, just >= 1.19.0). Unversioned `tool: just`
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
components: llvm-tools-preview

- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v2.86.5
uses: taiki-e/install-action@v2.86.6

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 HIGH RISK

Suggestion: Use a commit SHA for this action to guarantee the integrity of your CI environment. Mutable tags like v2.86.6 do not provide the same security guarantees as a fixed SHA.\n\nTry running the following prompt in your IDE agent:\n> Find the full git commit SHA for taiki-e/install-action@v2.86.6 and update the uses field in .github/workflows/ci.yml to use the SHA with the version tag in a comment.

See Issue in Codacy

with:
tool: cargo-llvm-cov

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-email-notify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Send push notification email
uses: dawidd6/action-send-mail@v3.12.0
uses: dawidd6/action-send-mail@v18

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 HIGH RISK

Suggestion: Pin this action to a full commit SHA to protect your SMTP secrets. This ensures that the code handling your credentials cannot be changed without an explicit review of the new SHA.\n\nTry running the following prompt in your IDE agent:\n> Find the full git commit SHA for dawidd6/action-send-mail@v18 and update the uses field in .github/workflows/push-email-notify.yml to use the SHA with the version tag in a comment (e.g., uses: dawidd6/action-send-mail@ # v18).

See Issue in Codacy

with:
server_address: ${{ secrets.SMTP_HOST }}
server_port: ${{ secrets.SMTP_PORT }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security-policy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
uses: actions/checkout@v7.0.1

- name: Install cargo-deny
uses: taiki-e/install-action@v2.86.5
uses: taiki-e/install-action@v2.86.6

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 HIGH RISK

Suggestion: Pin this action to a commit SHA. In a security-focused workflow, relying on mutable tags for tool installation introduces an unnecessary supply chain vector.\n\nTry running the following prompt in your IDE agent:\n> Find the full git commit SHA for taiki-e/install-action@v2.86.6 and update the uses field in .github/workflows/security-policy.yml to use the SHA with the version tag in a comment.

See Issue in Codacy

with:
tool: cargo-deny

Expand Down Expand Up @@ -331,7 +331,7 @@ jobs:
uses: actions/checkout@v7.0.1

- name: Install cargo-deny
uses: taiki-e/install-action@v2.86.5
uses: taiki-e/install-action@v2.86.6
with:
tool: cargo-deny

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ jobs:
components: llvm-tools-preview

- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v2.86.5
uses: taiki-e/install-action@v2.86.6

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 HIGH RISK

Suggestion: Switch to a commit SHA to ensure the action is immutable. This is a standard hardening practice for GitHub Actions to prevent automated tag-based exploits.\n\nTry running the following prompt in your IDE agent:\n> Find the full git commit SHA for taiki-e/install-action@v2.86.6 and update the uses field in .github/workflows/tests.yml to use the SHA with the version tag in a comment.

See Issue in Codacy

with:
tool: cargo-llvm-cov

Expand Down
Loading