We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b636db2 commit 3dc53c0Copy full SHA for 3dc53c0
.github/workflows/tests.yml
@@ -267,8 +267,8 @@ jobs:
267
> infection.json5
268
cat infection.json5 | jq
269
270
- - name: "Cache Result cache"
271
- uses: actions/cache@v4
+ - name: "Restore result cache"
+ uses: actions/cache/restore@v4
272
with:
273
path: ./tmp
274
key: "result-cache-v1-${{ matrix.php-version }}-${{ github.run_id }}"
@@ -287,3 +287,10 @@ jobs:
287
--log-verbosity=all \
288
--debug \
289
--logger-text=php://stdout
290
+
291
+ - name: "Save result cache"
292
+ uses: actions/cache/save@v4
293
+ if: ${{ !cancelled() }}
294
+ with:
295
+ path: ./tmp
296
+ key: "result-cache-v1-${{ matrix.php-version }}-${{ github.run_id }}"
0 commit comments