Tooling: try fixing cache errors
This commit is contained in:
parent
0059da45be
commit
64d6a22091
|
@ -26,7 +26,7 @@ runs:
|
||||||
run: |
|
run: |
|
||||||
echo "PNPM_STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
echo "PNPM_STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
||||||
- name: 'Cache PNPM Dependencies'
|
- name: 'Cache PNPM Dependencies'
|
||||||
uses: 'actions/cache@v4'
|
uses: 'actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319'
|
||||||
with:
|
with:
|
||||||
path: ${{ env.PNPM_STORE_PATH }}
|
path: ${{ env.PNPM_STORE_PATH }}
|
||||||
key: "${{ runner.os }}-pnpm-${{ hashFiles( '**/pnpm-lock.yaml' ) }}"
|
key: "${{ runner.os }}-pnpm-${{ hashFiles( '**/pnpm-lock.yaml' ) }}"
|
||||||
|
@ -45,7 +45,7 @@ runs:
|
||||||
coverage: 'none'
|
coverage: 'none'
|
||||||
- name: 'Cache Composer Dependencies'
|
- name: 'Cache Composer Dependencies'
|
||||||
if: ${{ inputs.php-version != 'false' }}
|
if: ${{ inputs.php-version != 'false' }}
|
||||||
uses: 'actions/cache@v4'
|
uses: 'actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319'
|
||||||
with:
|
with:
|
||||||
path: '~/.cache/composer/files'
|
path: '~/.cache/composer/files'
|
||||||
key: "${{ runner.os }}-composer-${{ hashFiles( '**/composer.lock' ) }}"
|
key: "${{ runner.os }}-composer-${{ hashFiles( '**/composer.lock' ) }}"
|
||||||
|
|
Loading…
Reference in New Issue