mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 04:36:12 +01:00
[TASK] Use Composer 2.2 in the CI pipeline (#362)
With the releases of Composer 2.2.2 and 2.2.3 (and PHPUnit 9.5.11), running the tests with Composer 2 in the pipeline should be safe afain.
This commit is contained in:
parent
3734ba295e
commit
07ff094028
3 changed files with 9 additions and 9 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -18,7 +18,7 @@ jobs:
|
|||
with:
|
||||
php-version: "${{ matrix.php-version }}"
|
||||
coverage: none
|
||||
tools: composer:v2.1
|
||||
tools: composer:v2.2
|
||||
- name: "Run PHP lint"
|
||||
run: "composer ci:php:lint"
|
||||
strategy:
|
||||
|
@ -40,7 +40,7 @@ jobs:
|
|||
with:
|
||||
php-version: "${{ matrix.php-version }}"
|
||||
coverage: none
|
||||
tools: composer:v2.1
|
||||
tools: composer:v2.2
|
||||
- name: "Show Composer version"
|
||||
run: composer --version
|
||||
- name: "Cache dependencies installed with composer"
|
||||
|
@ -106,7 +106,7 @@ jobs:
|
|||
with:
|
||||
php-version: "${{ matrix.php-version }}"
|
||||
coverage: none
|
||||
tools: composer:v2.1
|
||||
tools: composer:v2.2
|
||||
- name: "Show Composer version"
|
||||
run: composer --version
|
||||
- name: "Cache dependencies installed with composer"
|
||||
|
@ -196,7 +196,7 @@ jobs:
|
|||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: "${{ matrix.php-version }}"
|
||||
tools: composer:v2.1
|
||||
tools: composer:v2.2
|
||||
extensions: mysqli
|
||||
coverage: none
|
||||
- name: "Show Composer version"
|
||||
|
|
2
.github/workflows/codecoverage.yml
vendored
2
.github/workflows/codecoverage.yml
vendored
|
@ -18,7 +18,7 @@ jobs:
|
|||
php-version: "${{ matrix.php-version }}"
|
||||
coverage: xdebug
|
||||
extensions: xdebug, mysqli
|
||||
tools: composer:v2.1
|
||||
tools: composer:v2.2
|
||||
- name: "Show Composer version"
|
||||
run: composer --version
|
||||
- name: "Cache dependencies installed with composer"
|
||||
|
|
8
.github/workflows/predefined.yml
vendored
8
.github/workflows/predefined.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
|||
with:
|
||||
php-version: "${{ matrix.php-version }}"
|
||||
coverage: none
|
||||
tools: composer:v2.1
|
||||
tools: composer:v2.2
|
||||
- name: "Run PHP lint"
|
||||
run: "composer ci:php:lint"
|
||||
strategy:
|
||||
|
@ -104,7 +104,7 @@ jobs:
|
|||
with:
|
||||
php-version: "${{ matrix.php-version }}"
|
||||
coverage: none
|
||||
tools: composer:v2.1
|
||||
tools: composer:v2.2
|
||||
- name: "Show Composer version"
|
||||
run: composer --version
|
||||
- name: "Cache dependencies installed with composer"
|
||||
|
@ -163,7 +163,7 @@ jobs:
|
|||
with:
|
||||
php-version: "${{ matrix.php-version }}"
|
||||
coverage: none
|
||||
tools: composer:v2.1
|
||||
tools: composer:v2.2
|
||||
- name: "Show Composer version"
|
||||
run: composer --version
|
||||
- name: "Cache dependencies installed with composer"
|
||||
|
@ -214,7 +214,7 @@ jobs:
|
|||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: "${{ matrix.php-version }}"
|
||||
tools: composer:v2.1
|
||||
tools: composer:v2.2
|
||||
extensions: mysqli
|
||||
coverage: none
|
||||
- name: "Show Composer version"
|
||||
|
|
Loading…
Reference in a new issue