Danny Skoog
Danny Skoog
Same here. And we started to see these errors at **2023-09-19 1:43PM UTC**. And worth pointing out is that we have **not** done any configuration changes nor script version update...
> This hasn't resolved the issue for us in GitHub Actions. > > > > ``` > > time=2024-04-16T17:24:53.361Z level=INFO msg="fallback to use git command" > > reviewdog: fail to...
Hi @bahmutov. I can confirm that this does **not** work. In my case my step looks like this: ```yaml - name: Cypress run uses: cypress-io/github-action@v5 with: install: false start: npx...
What **did work**, though, was using the `config.specPattern` parameter, i.e: ```yaml - name: Cypress run uses: cypress-io/github-action@v5 with: install: false start: npx serve -l 8080 wait-on: http://localhost:8080 browser: chrome config:...
I understand. Yes, that could be reasonable. In my case (as seen above) I went with passing `config.specPattern` (which allowed me to just specify my pattern once) to the action...