Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue: Cache service responded with 404 with actions/setup-node@v2 #1034

Open
aib opened this issue Mar 11, 2022 · 6 comments
Open

Issue: Cache service responded with 404 with actions/setup-node@v2 #1034

aib opened this issue Mar 11, 2022 · 6 comments
Labels
kind/feature-request New feature or request

Comments

@aib
Copy link

aib commented Mar 11, 2022

(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 with cache: 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:

name: Test
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-node@v2
        with:
          node-version: 16.14.0
          cache: 'npm'
      - run: npm --version

Tested against release v0.2.25 and current master.

The requested URL looks like https://127.0.0.1:34567/_apis/artifactcache/cache?keys=node-cache-Linux-npm-4ae58fb93f5d99af5b6b62d6ba7d42110a267626bfc1d6847922d9e6863ef729&version=b3f0cb83629d634645a5146420c017462ebb5229bd60271a7a86e489a6066469 and 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)

@aib aib added the kind/bug Something isn't working label Mar 11, 2022
@KnisterPeter
Copy link
Member

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.

@KnisterPeter KnisterPeter added kind/feature-request New feature or request and removed kind/bug Something isn't working labels Mar 15, 2022
@ZauberNerd
Copy link
Contributor

See also this comment for a solution to disable cache in the setup-x actions when running in act while still allowing cache on GitHub actions: #989 (comment)

@aib
Copy link
Author

aib commented Mar 15, 2022

Ahh, I see. Thanks.

@3Nigma
Copy link

3Nigma commented Oct 4, 2022

Hey guys! I was able to use

    - name: Bringing node v16
      uses: actions/setup-node@v3
      with:
        node-version: 16
        cache: 'npm'
        cache-dependency-path: client

in act with a modified version of JEFuller's code written by me, conveniently named github-cache-server. 😊

image

This also works great with act's --artifact-server-path if you're planning to use the artifact server as well.

Cheers 🍻

@iSplasher
Copy link

Would it be possible to integrate this directly into act?

@3Nigma
Copy link

3Nigma commented Mar 27, 2023

Would it be possible to integrate this directly into act?

I would have, but I don't speak GO 😔

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/feature-request New feature or request
Projects
None yet
Development

No branches or pull requests

5 participants