mirror of
https://github.com/nektos/act.git
synced 2026-04-26 09:25:54 +03:00
[GH-ISSUE #2014] hashFiles does not resolve paths relative to GITHUB_WORKSPACE #964
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#964
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 @notmgsk on GitHub (Sep 20, 2023).
Original GitHub issue: https://github.com/nektos/act/issues/2014
Bug report info
Command used with act
Describe issue
The github actions docs state
See the attached repo which
checkoutaction with apathfooat its roothashFiles('foo')In Github's own runner, this works fine: the file
foois found, hashed, and printed. When usingact, the file is not found.Link to GitHub repository
https://github.com/notmgsk/act-bug
Workflow content
Relevant log output
Additional information
No response
@ChristopherHX commented on GitHub (Sep 20, 2023):
Yeah I wanted to fix it via https://github.com/nektos/act/pull/1940 (part of my fork of act for github-act-runner), but merging is blocked, by running hashfiles inside the container.
hashfiles currently operates relative to the checked out repository on the caller side where act is run.
@notmgsk commented on GitHub (Sep 21, 2023):
Thanks for the info, @ChristopherHX. I hope you're able to get your fix merged.
In the meantime, I side-stepped the issue by doing
hashFiles('**/<file>')where<file>is unique in the repo.