Skip to content

Commit f64483d

Browse files
anthonyshewjoshnuss
authored andcommitted
ci(fix): checkout before doing path filtering (vercel#9920)
### Description We're seeing sporadic failures on the `dorny/paths-filter` part, and[ the recommended recourse](dorny/paths-filter#24 (comment)) from the workflow author is to add a checkout. Failures: - https://github.com/vercel/turborepo/actions/runs/13208878667/job/36878355246 - https://github.com/vercel/turborepo/actions/runs/13205111177/job/36866322671 However, it's notable that it looks like GHA just...does this sometimes? - actions/checkout#417 - actions/runner-images#9632 - actions/runner-images#9882 ### Testing Instructions CI
1 parent bb563b5 commit f64483d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/turborepo-test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626
with-tailwind-example: ${{ steps.filter.outputs.with-tailwind-example }}
2727
rest: ${{ steps.filter.outputs.rest }}
2828
steps:
29+
- name: Checkout
30+
uses: actions/checkout@v4
31+
2932
- uses: dorny/paths-filter@v3
3033
id: filter
3134
with:

0 commit comments

Comments
 (0)