Skip to content

Commit 5db7b99

Browse files
authored
[CI] Replace ramsey/composer-install by composer install in app-tests workflow
1 parent 59e840d commit 5db7b99

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/app-tests.yaml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,15 @@ jobs:
4545
- uses: shivammathur/setup-php@v2
4646

4747
- name: Install root dependencies
48-
uses: ramsey/composer-install@v3
49-
with:
50-
working-directory: ${{ github.workspace }}
48+
run: composer install
5149

5250
- name: Build root packages
5351
run: php .github/build-packages.php
54-
working-directory: ${{ github.workspace }}
5552

5653
# We always install PHP deps because we of the UX Translator, which requires `var/translations` to exists
57-
- uses: ramsey/composer-install@v3
58-
with:
59-
dependency-versions: 'highest'
60-
working-directory: test_apps/encore-app
54+
- name: Install App dependenies
55+
run: composer update
56+
working-directory: test_apps/encore-app
6157

6258
- if: matrix.ux-packages-source == 'php-vendor'
6359
name: Refresh dependencies from vendor/

0 commit comments

Comments
 (0)