cache
cache copied to clipboard
Cache dependencies and build outputs in GitHub Actions
In this [run](https://github.com/input-output-hk/io-sim/actions/runs/6795507622/job/18473728925) (in the `Cache cabal store` we had a cache miss on Windows ``` Run actions/cache@v3 with: path: C:\sr key: cache-dependencies-pu4Aevoo_v1-Windows-8.10-42dc9d1d9517c36cc29f25d6a45c30c05b6faa6e98e7f7b96cb256858a8d7694 restore-keys: cache-dependencies-pu4Aevoo_v1-Windows-8.10 enableCrossOsArchive: false fail-on-cache-miss: false lookup-only:...
I populate a cache in one job running on an `ubuntu-latest` machine and try to read the cache in another job that runs in an `ubuntu` container. The workflow fails...
Exclusions do not work. Example: ```yaml jobs: save: runs-on: ubuntu-latest steps: - uses: actions/cache@v3 with: path: | cache !cache/unwanted key: ${{ github.workflow }}/${{ github.run_number }}-${{ github.run_attempt }} - run: |...
## Description ## Motivation and Context ## How Has This Been Tested? ## Screenshots (if appropriate): ## Types of changes - [ ] Bug fix (non-breaking change which fixes an...
Using `$HOME` as part of the cache path doesn't work. This ```yaml - uses: actions/cache@v4 id: my-cache with: path: $HOME/.cache/foo ``` Always gives ``` Warning: Path Validation Error: Path(s) specified...
ddm
Thank you 🙇♀ for wanting to create an issue in this repository. Before you do, please ensure you are filing the issue in the right place. Issues should only be...
Dear team, I apologise if I'm in the wrong place. Couldn't find any relevant link. Trying to use actions/cache@3 or actions/cache/restore@v3 got this message:  The cache was saved with...
Untested (not a js dev), but should not need any remarks else than: Commit 1 may be one step forward to help to fix #1323, best wishes to remove all...
## Description Using the existing example, cargo install will error out after restoring a cache: ``` cargo install cargo-tarpaulin Updating crates.io index error: binary `cargo-tarpaulin` already exists in destination Add...
## Description These changes update all markdown documentation to use the `v4` versions of: - `actions/cache@v4` - `actions/cache/save@v4` - `actions/cache/restore@v4` - `actions/checkout@v4` These changes do not update the `.github/workflows`. Those...