Fix composer cache tainting application codebase.
This commit is contained in:
parent
a406e895d2
commit
50eab96531
1 changed files with 8 additions and 5 deletions
13
.github/workflows/bouncer.yml
vendored
13
.github/workflows/bouncer.yml
vendored
|
|
@ -67,13 +67,16 @@ jobs:
|
|||
username: matthewbaggett
|
||||
password: ${{ secrets.GHCR_PASSWORD }}
|
||||
|
||||
- name: "Setup: Configure Cache"
|
||||
- name: "Setup: Find Composer Cache Directory"
|
||||
id: composer-cache
|
||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: "Setup: Composer Cache"
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: bouncer
|
||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-composer-
|
||||
path: ${{ steps.composer-cache.outputs.dir }}
|
||||
key: ${{ runner.os }}-bouncer-composer-${{ hashFiles('**/composer.lock') }}
|
||||
restore-keys: ${{ runner.os }}-bouncer-composer-
|
||||
|
||||
- name: "Dependencies: Composer Install"
|
||||
working-directory: bouncer
|
||||
|
|
|
|||
Loading…
Reference in a new issue