mirror of
https://github.com/nektos/act.git
synced 2026-04-26 09:25:54 +03:00
[GH-ISSUE #1778] Cannot read property 'lstat' of undefined in macOS #869
Labels
No labels
area/action
area/cli
area/docs
area/image
area/runner
area/workflow
backlog
confirmed/not-planned
kind/bug
kind/discussion
kind/external
kind/feature-request
kind/question
meta/duplicate
meta/invalid
meta/need-more-info
meta/resolved
meta/wontfix
meta/workaround
needs-work
pull-request
review/not-planned
size/M
size/XL
size/XXL
stale
stale-exempt
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/act#869
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @benbaker76 on GitHub (Apr 29, 2023).
Original GitHub issue: https://github.com/nektos/act/issues/1778
Bug report info
Command used with act
Describe issue
When creating an artifact I get an error
Cannot read property 'lstat' of undefinedLink to GitHub repository
https://github.com/benbaker76/Gfx2Next
Workflow content
Relevant log output
Additional information
No response
@benbaker76 commented on GitHub (May 3, 2023):
@ChristopherHX do you have any ideas where this error is occurring? I can help debug it if I can get a clue where to look.
@ChristopherHX commented on GitHub (May 3, 2023):
How old is your
nodeprogram? <1.12, update it to 1.16 or later.It is even possible that fs.promises.lstat is undefined on your node version.
In vs code you can start a node debug terminal and tell it to attach to all node processes spawed by act and hold on any exception (maybe you get problems reading minified code).
@benbaker76 commented on GitHub (May 3, 2023):
Updating
nodesolved the issue. Thanks!