Skip to content

Commit 7d85994

Browse files
mchmarnyclaude
andcommitted
chore: replace ko-build/setup-ko with go install
Replace ko-build/setup-ko action with manual go install to comply with NVIDIA org action restrictions. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 99526ba commit 7d85994

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/actions/setup-build-tools/action.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,11 @@ runs:
4242
steps:
4343
- name: Install ko
4444
if: inputs.install_ko == 'true'
45-
uses: ko-build/setup-ko@d006021bd0c28d1ce33a07e7943d48b079944c8d # v0.9
45+
shell: bash
46+
run: |
47+
set -euo pipefail
48+
go install github.com/google/ko@latest
49+
echo "ko installed: $(ko version 2>&1 || echo 'latest')"
4650
4751
- name: Install Syft
4852
if: inputs.install_syft == 'true'

0 commit comments

Comments
 (0)