Skip to content

Commit f70a012

Browse files
committed
Update composer-require-checker
1 parent 4e549b8 commit f70a012

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

.github/workflows/dependencies.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,20 @@ on:
77
pull_request:
88

99
env:
10-
PHP_VERSION: 8.1
10+
PHP_VERSION: 8.4
1111

1212
jobs:
1313
composer-require-checker:
1414
name: Check missing composer requirements
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
18-
- name: Konfiguriere PHP-Version und -Einstellungen im Worker-Node
17+
- name: Configure PHP version
1918
uses: shivammathur/setup-php@v2
2019
with:
21-
php-version: ${{ env.PHP_VERSION }}
22-
coverage: none
23-
tools: composer:v2
24-
ini-values: variables_order=EGPCS, date.timezone=Europe/Berlin
20+
php-version: ${{ env.PHP_VERSION }}
21+
coverage: none
22+
tools: composer:v2
23+
- uses: actions/checkout@v4
2524
- name: Cache Composer Dependencies
2625
uses: actions/cache@v4
2726
with:
@@ -31,7 +30,7 @@ jobs:
3130
composer-${{ env.PHP_VERSION }}-${{ github.ref }}
3231
composer-${{ env.PHP_VERSION }}-
3332
- run: |
34-
composer install --no-interaction --no-scripts --no-progress --no-suggest
33+
composer update --no-interaction --no-scripts --no-progress
3534
composer show
3635
- name: ComposerRequireChecker
37-
uses: docker://ghcr.io/webfactory/composer-require-checker:4.8.0
36+
uses: docker://ghcr.io/webfactory/composer-require-checker:4.18.0

0 commit comments

Comments
 (0)