mirror of
https://github.com/actions/cache.git
synced 2026-05-13 13:28:06 +00:00
Compare commits
7 Commits
927e12d0b3
...
0a5f017ebd
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0a5f017ebd | ||
|
|
27d5ce7f10 | ||
|
|
f280785d7b | ||
|
|
619aeb1606 | ||
|
|
bcf16c2893 | ||
|
|
59284659c6 | ||
|
|
79aefb1c78 |
BIN
.licenses/npm/@typespec/ts-http-runtime.dep.yml
generated
BIN
.licenses/npm/@typespec/ts-http-runtime.dep.yml
generated
Binary file not shown.
7867
dist/restore-only/index.js
vendored
7867
dist/restore-only/index.js
vendored
File diff suppressed because it is too large
Load Diff
7867
dist/restore/index.js
vendored
7867
dist/restore/index.js
vendored
File diff suppressed because it is too large
Load Diff
7867
dist/save-only/index.js
vendored
7867
dist/save-only/index.js
vendored
File diff suppressed because it is too large
Load Diff
7867
dist/save/index.js
vendored
7867
dist/save/index.js
vendored
File diff suppressed because it is too large
Load Diff
27
examples.md
27
examples.md
@ -6,16 +6,19 @@
|
|||||||
- [D - DUB](#d---dub)
|
- [D - DUB](#d---dub)
|
||||||
- [POSIX](#posix)
|
- [POSIX](#posix)
|
||||||
- [Windows](#windows)
|
- [Windows](#windows)
|
||||||
|
- [Dart](#dart)
|
||||||
|
- [Linux / Macos](#linux--macos)
|
||||||
|
- [Windows](#windows-1)
|
||||||
- [Deno](#deno)
|
- [Deno](#deno)
|
||||||
- [Linux](#linux)
|
- [Linux](#linux)
|
||||||
- [macOS](#macos)
|
- [macOS](#macos)
|
||||||
- [Windows](#windows-1)
|
- [Windows](#windows-2)
|
||||||
- [Elixir - Mix](#elixir---mix)
|
- [Elixir - Mix](#elixir---mix)
|
||||||
- [Erlang - Rebar3](#erlang--rebar3)
|
- [Erlang - Rebar3](#erlang--rebar3)
|
||||||
- [Go - Modules](#go---modules)
|
- [Go - Modules](#go---modules)
|
||||||
- [Linux](#linux-1)
|
- [Linux](#linux-1)
|
||||||
- [macOS](#macos-1)
|
- [macOS](#macos-1)
|
||||||
- [Windows](#windows-2)
|
- [Windows](#windows-3)
|
||||||
- [Haskell - Cabal](#haskell---cabal)
|
- [Haskell - Cabal](#haskell---cabal)
|
||||||
- [Haskell - Stack](#haskell---stack)
|
- [Haskell - Stack](#haskell---stack)
|
||||||
- [Java - Gradle](#java---gradle)
|
- [Java - Gradle](#java---gradle)
|
||||||
@ -140,6 +143,26 @@ steps:
|
|||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-dub-
|
${{ runner.os }}-dub-
|
||||||
```
|
```
|
||||||
|
## Dart
|
||||||
|
|
||||||
|
### Linux / Macos
|
||||||
|
```yaml
|
||||||
|
- uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.pub-cache/
|
||||||
|
key: ${{ runner.os }}-dart-${{ hashFiles('**/pubspec.lock') }}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Windows
|
||||||
|
On windows the global package cache is located at `%LOCALAPPDATA%\Pub\Cache` but may vary due to different windows version. Refer to the [docs](https://dart.dev/tools/pub/cmd/pub-get#the-system-package-cache)
|
||||||
|
```yaml
|
||||||
|
- uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/AppData/Local/Pub/Cache/
|
||||||
|
key: ${{ runner.os }}-dart-${{ hashFiles('**/pubspec.lock') }}
|
||||||
|
```
|
||||||
|
|
||||||
## Deno
|
## Deno
|
||||||
|
|
||||||
|
|||||||
6
package-lock.json
generated
6
package-lock.json
generated
@ -1945,9 +1945,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typespec/ts-http-runtime": {
|
"node_modules/@typespec/ts-http-runtime": {
|
||||||
"version": "0.3.2",
|
"version": "0.3.5",
|
||||||
"resolved": "https://registry.npmjs.org/@typespec/ts-http-runtime/-/ts-http-runtime-0.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typespec/ts-http-runtime/-/ts-http-runtime-0.3.5.tgz",
|
||||||
"integrity": "sha512-IlqQ/Gv22xUC1r/WQm4StLkYQmaaTsXAhUVsNE0+xiyf0yRFiH5++q78U3bw6bLKDCTmh0uqKB9eG9+Bt75Dkg==",
|
"integrity": "sha512-yURCknZhvywvQItHMMmFSo+fq5arCUIyz/CVk7jD89MSai7dkaX8ufjCWp3NttLojoTVbcE72ri+be/TnEbMHw==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"http-proxy-agent": "^7.0.0",
|
"http-proxy-agent": "^7.0.0",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user