cache
cache copied to clipboard
Cache dependencies and build outputs in GitHub Actions
Heya! I have these two jobs where Job B needs Job A: https://github.com/returntocorp/semgrep/blob/a9e8b90c2e3de705c54ca311b414608ffaa32ff7/.github/workflows/tests.yml#L15-L67 Both jobs do this: ```yaml uses: actions/cache@v3 with: path: ocaml-build-artifacts.tgz key: foo ``` But only Job B...
Currently `mkdir -p $cache_path` should be issued to create directory specified in `path`. `cache` does not create the `path` directory if it doesn't exist. https://github.com/szepeviktor/Valinor/runs/7272413993?check_suite_focus=true Please consider adding a `"create_directory":...
``` name: Setup Golang description: provisions tooling and installs dependancies runs: using: "composite" steps: - name: Get GO cache directory path id: go-cache-dir-path run: echo "::set-output name=dir::$(go env GOCACHE)" shell:...
Sometimes github CI has an issue to launch avd from cached instance. `Timeout waiting for emulator to boot.` I have to remove your github action step from my build as...
We are facing issue with node caching today on ubuntu-18.04. Following is the error ``` hashFiles('../../**/package-lock.json') failed. Fail to hash files under directory ``` This has been working for the...
This is related to issue https://github.com/actions/setup-java/issues/269 The problem is that caches fill up over time as dependencies, runtimes, and tooling are upgraded. Old files are never evicted and the cache...
YAML File is fairly straightforward. ``` ... jobs: build: runs-on: windows-latest steps: - uses: actions/checkout@v2 - uses: bazelbuild/setup-bazelisk@v1 - name: Cache Build uses: actions/cache@v2 env: cache-name: build-cache with: path: |...
Using a simple step to restore the build x cache we encountered an error (below). I believe the issue is that the GitHub cache became corrupt. However actions/cache did not...
When saving `multiple cache`, post cache run indicates it caches using the same `cache key` even when different cache keys were used. I have been able to recreate the bug...
Is there a way to view a project's current caches and download them anywhere for inspecting the contents or debugging purposes?