Skip to content

Commit ed922de

Browse files
vvillait88claude
andcommitted
fix(ci): osv-scanner binary must be _linux_arm64 (Blacksmith runners are ARM)
The previous _linux_amd64 download silently exec-failed; the prior `|| true` masked it. Now that the swallow is removed, the architecture mismatch surfaces. Blacksmith pool is ARM, osv-scanner publishes both _amd64 and _arm64 binaries — switching to the right one. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent c6986d6 commit ed922de

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Install osv-scanner
2525
run: |
26-
curl -fsSL https://github.com/google/osv-scanner/releases/download/v2.3.5/osv-scanner_linux_amd64 -o osv-scanner
26+
curl -fsSL https://github.com/google/osv-scanner/releases/download/v2.3.5/osv-scanner_linux_arm64 -o osv-scanner
2727
chmod +x osv-scanner
2828
2929
- name: Scan dependencies

0 commit comments

Comments
 (0)