Skip to content

Commit 4480327

Browse files
authored
Fix update-reference workflow by adding checkout step (#479)
The workflow was broken in commit 9bb3cde when the explicit checkout step was replaced with the local ./.github/actions/setup action. Local actions require the repository to be checked out first so the action file can be found.
1 parent 60ba787 commit 4480327

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/update-toolhive-reference.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ jobs:
2525
update-reference:
2626
runs-on: ubuntu-latest
2727
steps:
28+
- name: Checkout repository
29+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
30+
2831
- name: Setup
2932
uses: ./.github/actions/setup
3033

0 commit comments

Comments
 (0)