Skip to content

Commit 6f759a2

Browse files
committed
use local temp
1 parent 4290179 commit 6f759a2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
- uses: "actions/download-artifact@v4"
182182
with:
183183
name: "result-cache"
184-
path: "${{ runner.temp }}"
184+
path: "tmp/"
185185

186186
- name: "Run infection"
187187
run: |
@@ -236,4 +236,4 @@ jobs:
236236
- uses: "actions/upload-artifact@v4"
237237
with:
238238
name: "result-cache"
239-
path: "${{ runner.temp }}/resultCache.php"
239+
path: "tmp/resultCache.php"

phpstan.neon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ includes:
1313
- phar://phpstan.phar/conf/bleedingEdge.neon
1414

1515
parameters:
16-
resultCachePath: %tmpDir%/resultCache.php
16+
resultCachePath: tmp/resultCache.php
1717

1818
excludePaths:
1919
- tests/*/data/*

0 commit comments

Comments
 (0)