Skip to content

Commit e000762

Browse files
authored
Fix release ci step around checkout: (#343)
## Description Fixes GitHub actions error: "Error: Can't find 'action.yml', 'action.yaml' or 'Dockerfile' under '/home/runner/work/cluster-api-provider-tinkerbell/cluster-api-provider-tinkerbell/.github/actions/setup-go'. Did you forget to run actions/checkout before running your local action?" ## Why is this needed Release CI is broken. Fixes: # ## How Has This Been Tested? ## How are existing users impacted? What migration steps/scripts do we need? ## Checklist: I have: - [ ] updated the documentation and/or roadmap (if required) - [ ] added unit or e2e tests - [ ] provided instructions on how to upgrade
2 parents ab813f3 + d346814 commit e000762

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,10 @@ jobs:
8989
steps:
9090
- uses: actions/checkout@v4
9191

92-
- uses: ./.github/actions/setup-go
92+
- uses: actions/setup-go@v5
93+
with:
94+
go-version: "${{ env.GO_VERSION }}"
95+
cache: true
9396

9497
- uses: actions/cache@v4
9598
with:

0 commit comments

Comments
 (0)