Skip to content

Commit ade937e

Browse files
committed
chore: fix checkout step order in test workflow
Moved the actions/checkout@v5 step before actions/setup-go@v5 to ensure the repository is checked out before setting up Go. This corrects the workflow execution order.
1 parent 1a40961 commit ade937e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,11 @@ jobs:
3636
with:
3737
access_token: ${{ github.token }}
3838

39+
- uses: actions/checkout@v5
40+
3941
- uses: actions/setup-go@v5
4042
with:
4143
go-version: ${{ matrix.go-version }}
42-
- uses: actions/checkout@v5
4344

4445
# Get values for cache paths to be used in later steps
4546
- id: cache-paths

0 commit comments

Comments
 (0)