File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -60,18 +60,17 @@ jobs:
60
60
61
61
- name : Restore cache
62
62
if : github.event_name != 'workflow_dispatch' || fromJSON(github.event.inputs.useCache)
63
- uses : actions/cache/restore@v3
63
+ uses : actions/cache/restore@v4
64
64
with :
65
65
path : .buildx-cache-${{ matrix.policy }}_${{ matrix.platform }}/*
66
66
key : buildx-cache-${{ matrix.policy }}-${{ matrix.platform }}
67
- restore-keys : buildx-cache-${{ matrix.policy }}-${{ matrix.platform }}
68
67
69
68
- name : Build
70
69
run : ./build.sh
71
70
72
71
- name : Save cache
73
72
if : github.event_name == 'push' && github.ref == 'refs/heads/main'
74
- uses : actions/cache/save@v3
73
+ uses : actions/cache/save@v4
75
74
with :
76
75
path : .buildx-cache-${{ matrix.policy }}_${{ matrix.platform }}/*
77
76
key : buildx-cache-${{ matrix.policy }}-${{ matrix.platform }}
You can’t perform that action at this time.
0 commit comments