diff --git a/.github/workflows/firestore.yml b/.github/workflows/firestore.yml index ab5c94a6303..065d0b365cc 100644 --- a/.github/workflows/firestore.yml +++ b/.github/workflows/firestore.yml @@ -30,9 +30,9 @@ jobs: # Only when this is not a scheduled run if: github.event_name != 'schedule' outputs: - changed: ${{ steps.firestore_src_changes.outputs.sources || steps.related_changes.outputs.other_changes }} + changed: ${{ steps.firestore_src_changes.outputs.sources == 'true' || steps.related_changes.outputs.other_changes == 'true' }} steps: - - uses: dorny/paths-filter@v2 + - uses: dorny/paths-filter@v3.0.2 id: firestore_src_changes with: predicate-quantifier: 'every' @@ -40,8 +40,8 @@ jobs: sources: # Firestore sources - 'Firestore/**' - - '!**/*.md' - - uses: dorny/paths-filter@v2 + - '!Firestore/**/*.md' + - uses: dorny/paths-filter@v3.0.2 id: related_changes with: filters: |