${{ runner.temp }}

This commit is contained in:
tooomm 2026-08-14 06:56:57 +02:00 committed by GitHub
parent 2858450d7f
commit 528197f3f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -114,7 +114,7 @@ jobs:
with: with:
if-no-files-found: error if-no-files-found: error
name: digest-${{ matrix.label }} name: digest-${{ matrix.label }}
path: $RUNNER_TEMP/digests/* path: ${{ runner.temp }}/digests/*
retention-days: 1 retention-days: 1
@ -129,7 +129,7 @@ jobs:
- name: "Download digests" - name: "Download digests"
uses: actions/download-artifact@v7 uses: actions/download-artifact@v7
with: with:
path: $RUNNER_TEMP/digests path: ${{ runner.temp }}/digests
pattern: digest-* pattern: digest-*
merge-multiple: true merge-multiple: true