File tree 2 files changed +12
-4
lines changed
2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 131
131
key : ${{ runner.os }}-make-cache-${{ needs.xref.outputs.hash }}
132
132
fail-on-cache-miss : true
133
133
- name : RESTORE TEST RESULT CACHE
134
- uses : actions/cache@v4
134
+ uses : actions/cache/restore @v4
135
135
with :
136
136
path : /home/runner/test-result-cache/
137
137
key : ${{ runner.os }}-test-result-cache-${{ needs.xref.outputs.hash }}-rabbitmq_cli-${{ github.run_number }}-${{ github.run_attempt }}
138
138
restore-keys : |
139
139
${{ runner.os }}-test-result-cache-${{ needs.xref.outputs.hash }}-rabbitmq_cli-${{ github.run_number }}-${{ needs.xref.outputs.previous_run_attempt }}
140
140
${{ runner.os }}-test-result-cache-${{ needs.xref.outputs.hash }}-rabbitmq_cli-${{ github.run_number }}-
141
141
${{ runner.os }}-test-result-cache-${{ needs.xref.outputs.hash }}-rabbitmq_cli-
142
- save-always : true
143
142
- name : PRINT CACHED RESULTS
144
143
run : |
145
144
set -x
164
163
RABBITMQ_METADATA_STORE=${{ matrix.metadata_store }}
165
164
touch ${{ env.SUCCESS_PATH }}/checks
166
165
fi
166
+ - name : SAVE TEST RESULT CACHE
167
+ uses : actions/cache/save@v4
168
+ with :
169
+ path : /home/runner/test-result-cache/
170
+ key : ${{ runner.os }}-test-result-cache-${{ needs.xref.outputs.hash }}-rabbitmq_cli-${{ github.run_number }}-${{ github.run_attempt }}
167
171
- name : UPLOAD TEST ARTIFACTS
168
172
if : always()
169
173
Original file line number Diff line number Diff line change @@ -2400,15 +2400,14 @@ jobs:
2400
2400
key : ${{ runner.os }}-make-cache-${{ needs.xref.outputs.hash }}
2401
2401
fail-on-cache-miss : true
2402
2402
- name : RESTORE TEST RESULT CACHE
2403
- uses : actions/cache@v4
2403
+ uses : actions/cache/restore @v4
2404
2404
with :
2405
2405
path : /home/runner/test-result-cache/
2406
2406
key : ${{ runner.os }}-test-result-cache-${{ needs.xref.outputs.hash }}-rabbitmq_cli-${{ github.run_number }}-${{ github.run_attempt }}
2407
2407
restore-keys : |
2408
2408
${{ runner.os }}-test-result-cache-${{ needs.xref.outputs.hash }}-rabbitmq_cli-${{ github.run_number }}-${{ needs.xref.outputs.previous_run_attempt }}
2409
2409
${{ runner.os }}-test-result-cache-${{ needs.xref.outputs.hash }}-rabbitmq_cli-${{ github.run_number }}-
2410
2410
${{ runner.os }}-test-result-cache-${{ needs.xref.outputs.hash }}-rabbitmq_cli-
2411
- save-always : true
2412
2411
- name : PRINT CACHED RESULTS
2413
2412
run : |
2414
2413
set -x
@@ -2433,6 +2432,11 @@ jobs:
2433
2432
RABBITMQ_METADATA_STORE=${{ matrix.metadata_store }}
2434
2433
touch ${{ env.SUCCESS_PATH }}/checks
2435
2434
fi
2435
+ - name : SAVE TEST RESULT CACHE
2436
+ uses : actions/cache/save@v4
2437
+ with :
2438
+ path : /home/runner/test-result-cache/
2439
+ key : ${{ runner.os }}-test-result-cache-${{ needs.xref.outputs.hash }}-rabbitmq_cli-${{ github.run_number }}-${{ github.run_attempt }}
2436
2440
- name : UPLOAD TEST ARTIFACTS
2437
2441
if : always()
2438
2442
You can’t perform that action at this time.
0 commit comments