mirror of
https://github.com/nektos/act.git
synced 2026-04-26 01:15:51 +03:00
[GH-ISSUE #1034] Issue: Cache service responded with 404 with actions/setup-node@v2 #602
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#602
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 @aib on GitHub (Mar 11, 2022).
Original GitHub issue: https://github.com/nektos/act/issues/1034
(I'm skipping the issue template since this looks more like an oversight or missing feature than a bug.)
actions/setup-node@v2, when run withcache: npm, fails with "::error::Cache service responded with 404".To replicate, one can clone https://github.com/aib/act-setup-node-test and run
act --artifact-server-path /tmp/act-artifacts -j test. Edit: Or use the following workflow file:Tested against release v0.2.25 and current master.
The requested URL looks like
http://127.0.0.1:34567/_apis/artifactcache/cache?keys=node-cache-Linux-npm-4ae58fb93f5d99af5b6b62d6ba7d42110a267626bfc1d6847922d9e6863ef729&version=b3f0cb83629d634645a5146420c017462ebb5229bd60271a7a86e489a6066469and seems to be generated by https://github.com/actions/toolkit/blob/main/packages/cache/src/internal/cacheHttpClient.ts#L33 .A workaround is returning HTTP 204 to the request. An actual caching implementation should be easy, too, but I'm not familiar enough with act, GitHub Actions or even Go to submit a PR. (And in any case I'd need an issue # to reference)
@KnisterPeter commented on GitHub (Mar 15, 2022):
Hi @aib,
the asset server implementation in act currently does not support the github caching API.
It only supports the artifact upload/download from jobs.
@ZauberNerd commented on GitHub (Mar 15, 2022):
See also this comment for a solution to disable cache in the
setup-xactions when running in act while still allowing cache on GitHub actions: https://github.com/nektos/act/issues/989#issuecomment-1059758786@aib commented on GitHub (Mar 15, 2022):
Ahh, I see. Thanks.
@3Nigma commented on GitHub (Oct 4, 2022):
Hey guys! I was able to use
in
actwith a modified version of JEFuller's code written by me, conveniently named github-cache-server. 😊This also works great with
act's--artifact-server-pathif you're planning to use the artifact server as well.Cheers 🍻
@iSplasher commented on GitHub (Mar 26, 2023):
Would it be possible to integrate this directly into act?
@3Nigma commented on GitHub (Mar 27, 2023):
I would have, but I don't speak GO 😔
@shmuli9 commented on GitHub (Jan 11, 2025):
How do you set this up in your workflow file?