Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

separate vendor caches #580

Merged
merged 1 commit into from
Jul 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-vendor
key: ${{ runner.os }}-vendor-php-${{ matrix.php }}

- name: Install composer dependencies
env:
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-vendor
key: ${{ runner.os }}-vendor-legacy

- name: Install composer dependencies
# Lowest discovery can end up with an incompatible psr7 implementation, see discussion in https://github.com/FriendsOfSymfony/FOSHttpCache/pull/567
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-vendor
key: ${{ runner.os }}-vendor-legacy

- name: Install composer dependencies
run: |
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-vendor
key: ${{ runner.os }}-vendor-php-8.2

- name: Install dependencies
run: |
Expand Down