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

chore: fix ci deprecations #54

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ jobs:
- php-version: 8.0
symfony-version: 5.4.*
stability: prefer-stable
- php-version: 8.0
symfony-version: 6.0.*
stability: prefer-stable
- php-version: 8.1
symfony-version: 6.2.*
symfony-version: 6.4.*
stability: prefer-stable
- php-version: 8.2
symfony-version: 6.2.*
symfony-version: 6.4.*
stability: prefer-stable
- php-version: 8.3
symfony-version: 6.4.*
stability: prefer-stable

name: PHP ${{ matrix.php-version }} Test with Symfony ${{ matrix.symfony-version }} and ${{ matrix.stability }}
steps:
# —— Setup Github actions 🐙 —————————————————————————————————————————————
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# https://github.com/shivammathur/setup-php (community)
- name: Setup PHP, with composer and extensions
Expand All @@ -59,7 +59,7 @@ jobs:
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache composer dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
# Use composer.json for key, if composer.lock is not committed.
Expand Down