File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -47,22 +47,24 @@ jobs:
47
47
# The target directory cache doesn't include the source directory because
48
48
# that comes from the checkout. See "prepare target_ws for cache" task below
49
49
- name : cache target_ws
50
- uses : actions /cache@v4
50
+ uses : rhaschke /cache@main
51
51
with :
52
- save-always : true
53
52
path : ${{ env.BASEDIR }}/target_ws
54
53
key : target_ws-${{ env.CACHE_PREFIX }}-${{ hashFiles('**/CMakeLists.txt', '**/package.xml') }}-${{ github.run_id }}
55
54
restore-keys : |
56
55
target_ws-${{ env.CACHE_PREFIX }}-${{ hashFiles('**/CMakeLists.txt', '**/package.xml') }}
56
+ env :
57
+ GHA_CACHE_SAVE : always
57
58
- name : cache ccache
58
- uses : actions /cache@v4
59
+ uses : rhaschke /cache@main
59
60
with :
60
- save-always : true
61
61
path : ${{ env.CCACHE_DIR }}
62
62
key : ccache-${{ env.CACHE_PREFIX }}-${{ github.sha }}-${{ github.run_id }}
63
63
restore-keys : |
64
64
ccache-${{ env.CACHE_PREFIX }}-${{ github.sha }}
65
65
ccache-${{ env.CACHE_PREFIX }}
66
+ env :
67
+ GHA_CACHE_SAVE : always
66
68
- name : industrial_ci
67
69
uses : ros-industrial/industrial_ci@master
68
70
env : ${{ matrix.env }}
You can’t perform that action at this time.
0 commit comments