Skip to content

Commit

Permalink
Merge pull request #762 from magnetikonline/remove-win-load-app-data
Browse files Browse the repository at this point in the history
Remove final incorrect instances of `%AppData%` / `%LocalAppData%` from Windows cache examples
  • Loading branch information
Vipul authored and GitHub committed May 11, 2022
2 parents 9c784e2 + 3722efe commit 95f200e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,10 @@ steps:
with:
path: |
~\.deno
%LocalAppData%\deno
~\AppData\Local\deno
key: ${{ runner.os }}-deno-${{ hashFiles('**/deps.ts') }}
```


## Elixir - Mix

```yaml
Expand Down Expand Up @@ -260,7 +259,7 @@ We cache the elements of the Cabal store separately, as the entirety of `~/.caba

## Node - npm

For npm, cache files are stored in `~/.npm` on Posix, or `%AppData%/npm-cache` on Windows. See https://docs.npmjs.com/cli/cache#cache
For npm, cache files are stored in `~/.npm` on Posix, or `~\AppData\npm-cache` on Windows. See https://docs.npmjs.com/cli/cache#cache

If using `npm config` to retrieve the cache directory, ensure you run [actions/setup-node](https://github.com/actions/setup-node) first to ensure your `npm` version is correct.

Expand Down

0 comments on commit 95f200e

Please sign in to comment.