Skip to content
Merged
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: 3 additions & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ jobs:
# For private repositories:
# - `publish_results` will always be set to `false`, regardless
# of the value entered here.
publish_results: true
# Disabled because OSSF workflow verification currently rejects
# github/codeql-action/upload-sarif as an "imposter commit".
publish_results: false
Comment on lines +62 to +64
Copy link

Copilot AI Mar 6, 2026

Choose a reason for hiding this comment

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

With publish_results: false, the job likely no longer needs id-token: write permission (the file comment above says it’s needed to publish results/badge). Consider dropping id-token: write to keep least-privilege permissions aligned with the new configuration.

Copilot uses AI. Check for mistakes.

# (Optional) Uncomment file_mode if you have a .gitattributes with files marked export-ignore
# file_mode: git
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Run cargo deny check
run: cargo deny check --config deny.ci.toml
run: cargo deny check --config deny.toml

- name: Run cargo outdated
run: cargo outdated --depth=1 --exit-code=1
Expand Down
Loading