@@ -28,15 +28,11 @@ jobs:
28
28
id : " deno-cache-restore"
29
29
uses : " actions/cache/restore@v4"
30
30
with :
31
- key : " Deno/ ${{runner.os}}- ${{github.run_id}}-${{github.run_attempt}}-${{github.job}}"
31
+ key : " ${{runner.os}}/Deno/ ${{github.run_id}}-${{github.run_attempt}}-${{github.job}}"
32
32
restore-keys : |-
33
- Deno/${{runner.os}}-${{github.run_id}}-${{github.run_attempt}}-
34
- Deno/${{runner.os}}-${{github.run_id}}-${{github.run_attempt}}
35
- Deno/${{runner.os}}-${{github.run_id}}-
36
- Deno/${{runner.os}}-${{github.run_id}}
37
- Deno/${{runner.os}}-
38
- Deno/${{runner.os}}
39
- Deno/
33
+ ${{runner.os}}/Deno/${{github.run_id}}-${{github.run_attempt}}-
34
+ ${{runner.os}}/Deno/${{github.run_id}}-
35
+ ${{runner.os}}/Deno/
40
36
path : " ${{steps.deno-cache-path.outputs.value}}"
41
37
- name : " Resolve Metadata"
42
38
id : " metadata"
81
77
if : " ${{!cancelled() && steps.deno-cache-restore.outcome == 'success'}}"
82
78
uses : " actions/cache/save@v4"
83
79
with :
84
- key : " Deno/ ${{runner.os}}- ${{github.run_id}}-${{github.run_attempt}}-${{github.job}}"
80
+ key : " ${{runner.os}}/Deno/ ${{github.run_id}}-${{github.run_attempt}}-${{github.job}}"
85
81
path : " ${{steps.deno-cache-path.outputs.value}}"
86
82
outputs :
87
83
npm-artifact : " ${{steps.npm-artifact.outcome == 'success'}}"
@@ -122,15 +118,11 @@ jobs:
122
118
id : " npm-cache-restore"
123
119
uses : " actions/cache/restore@v4"
124
120
with :
125
- key : " NPM/ ${{runner.os}}- ${{github.run_id}}-${{github.run_attempt}}-${{github.job}}"
121
+ key : " ${{runner.os}}/NPM/ ${{github.run_id}}-${{github.run_attempt}}-${{github.job}}"
126
122
restore-keys : |-
127
- NPM/${{runner.os}}-${{github.run_id}}-${{github.run_attempt}}-
128
- NPM/${{runner.os}}-${{github.run_id}}-${{github.run_attempt}}
129
- NPM/${{runner.os}}-${{github.run_id}}-
130
- NPM/${{runner.os}}-${{github.run_id}}
131
- NPM/${{runner.os}}-
132
- NPM/${{runner.os}}
133
- NPM/
123
+ ${{runner.os}}/NPM/${{github.run_id}}-${{github.run_attempt}}-
124
+ ${{runner.os}}/NPM/${{github.run_id}}-
125
+ ${{runner.os}}/NPM/
134
126
path : " ${{steps.npm-cache-path.outputs.value}}"
135
127
- name : " Resolve Metadata"
136
128
id : " metadata"
@@ -230,5 +222,5 @@ jobs:
230
222
if : " ${{!cancelled() && steps.npm-cache-restore.outcome == 'success'}}"
231
223
uses : " actions/cache/save@v4"
232
224
with :
233
- key : " NPM/ ${{runner.os}}- ${{github.run_id}}-${{github.run_attempt}}-${{github.job}}"
225
+ key : " ${{runner.os}}/NPM/ ${{github.run_id}}-${{github.run_attempt}}-${{github.job}}"
234
226
path : " ${{steps.npm-cache-path.outputs.value}}"
0 commit comments