Skip to content

Commit d346814

Browse files
Fix release ci step around checkout:
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?" Signed-off-by: Jacob Weinstock <jakobweinstock@gmail.com>
1 parent ab813f3 commit d346814

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)