question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

No such file or directory

See original GitHub issue

This error started today, for no apparent reason:

Error: .github/workflows/test.yml (Line: 85, Col: 16):
Error: The template is not valid. .github/workflows/test.yml (Line: 85, Col: 16): An error occurred trying to start process '/home/runner/runners/2.290.1/externals/node16/bin/node' with working directory '/__w/my-project/my-project'. No such file or directory

Here is the test.yml. Line 85 is key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}

[...]
steps:
      - name: Check out repository code
        uses: actions/checkout@v2

      - name: Cache Composer packages
        id: composer-cache
        uses: actions/cache@v3
        with:
          path: vendor
          key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
          restore-keys: |
            ${{ runner.os }}-php-
[...]

Issue Analytics

  • State:closed
  • Created a year ago
  • Reactions:35
  • Comments:13 (4 by maintainers)

github_iconTop GitHub Comments

12reactions
thboopcommented, Apr 29, 2022

Hey folks, thanks for being patient while we investigated this issue.

This should be fixed now, any future jobs you queue should work as expected. Please let me know if you see any more issues.

11reactions
dhadkacommented, Apr 29, 2022

👋 I’ve notified the Actions team of this issue

Read more comments on GitHub >

github_iconTop Results From Across the Web

"No such file or directory" but it exists - Stack Overflow
I got this error “No such file or directory” but it exists because my file was created in Windows and I tried to...
Read more >
FileNotFoundError: [Errno 2] No such ... - Net-Informations.Com
In the above code, you are not giving the full path to a file to the open() function, just its name - a...
Read more >
Python FileNotFoundError: [Errno 2] No such file or directory ...
The Python FileNotFoundError: [Errno 2] No such file or directory error is often raised by the os library. This error tells you that...
Read more >
How to Solve No Such File or Directory Error in Python
To solve no such file or directory error in Python, ensure that the file exists in your provided path. To check all the...
Read more >
“.h: No such file or directory" - 2 Easy fixes to Arduino error
The easiest way is to go to Sketch > Include Library > Manage Libraries. The Arduino IDE will open up a dialogue box...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found