File tree Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 24
24
uses : actions/cache@v2
25
25
with :
26
26
path : _cache
27
- key : ${{ runner.os }}-pluto_state_cache-v3-fall22- ${{ hashFiles('**/Project.toml', '**/Manifest.toml') }}-${{ github.run_id }}
27
+ key : ${{ runner.os }}-pluto_state_cache-v3-${{ hashFiles('**/Project.toml', '**/Manifest.toml') }}-${{ github.run_id }}
28
28
restore-keys : |
29
- ${{ runner.os }}-pluto_state_cache-v3-fall22- ${{ hashFiles('**/Project.toml', '**/Manifest.toml') }}
29
+ ${{ runner.os }}-pluto_state_cache-v3-${{ hashFiles('**/Project.toml', '**/Manifest.toml') }}
30
30
31
31
- name : ⏱ Cache .julia
32
32
uses : actions/cache@v2
Original file line number Diff line number Diff line change
1
+ name : Keep caches fresh
2
+ on :
3
+ schedule :
4
+ -cron : " 5 4 1/4 * *" # every 4 days
5
+
6
+ jobs :
7
+ build-and-deploy :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - name : ⏱ Cache notebook states
11
+ uses : actions/cache@v2
12
+ with :
13
+ path : _cache
14
+ key : ${{ runner.os }}-pluto_state_cache-v3-${{ hashFiles('**/Project.toml', '**/Manifest.toml') }}-${{ github.run_id }}
15
+ restore-keys : |
16
+ ${{ runner.os }}-pluto_state_cache-v3-${{ hashFiles('**/Project.toml', '**/Manifest.toml') }}
17
+
18
+ - name : ⏱ Cache .julia
19
+ uses : actions/cache@v2
20
+ with :
21
+ path : ~/.julia
22
+ key : ${{ runner.os }}-dotjulia-v1-${{ hashFiles('**/Project.toml', '**/Manifest.toml') }}-${{ github.run_id }}
23
+ restore-keys : |
24
+ ${{ runner.os }}-dotjulia-v1-${{ hashFiles('**/Project.toml', '**/Manifest.toml') }}
25
+
You can’t perform that action at this time.
0 commit comments