Issue: `sparse-checkout` checks out undefined paths ```yml uses: actions/checkout@v4 with: fetch-depth: 1 ref: ${{ github.sha }} sparse-checkout-cone-mode: false sparse-checkout: | folder1 myfile.yaml ``` Actual behaviour (checks out repository contents in following manner): ``` - folder1 - folderabc/myfile.yaml - folderabc2/myfile.yaml - myfile.yaml ``` Expected behaviour: ``` - folder1 - myfile.yaml ```