Skip to content

Commit 1815b42

Browse files
committed
Merge branch 'stable' into develop
2 parents 668d879 + 9ecc6fa commit 1815b42

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/cs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
# Install dependencies and handle caching in one go.
4949
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
5050
- name: Install Composer dependencies
51-
uses: "ramsey/composer-install@v2"
51+
uses: "ramsey/composer-install@v3"
5252
with:
5353
# Bust the cache at least once a month - output format: YYYY-MM.
5454
custom-cache-suffix: $(date -u "+%Y-%m")

.github/workflows/quicktest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
# Install dependencies and handle caching in one go.
7272
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
7373
- name: Install Composer dependencies
74-
uses: "ramsey/composer-install@v2"
74+
uses: "ramsey/composer-install@v3"
7575
with:
7676
# Bust the cache at least once a month - output format: YYYY-MM.
7777
custom-cache-suffix: $(date -u "+%Y-%m")

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,15 +117,15 @@ jobs:
117117
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
118118
- name: Install Composer dependencies - normal
119119
if: ${{ matrix.php < 8.4 }}
120-
uses: "ramsey/composer-install@v2"
120+
uses: "ramsey/composer-install@v3"
121121
with:
122122
# Bust the cache at least once a month - output format: YYYY-MM.
123123
custom-cache-suffix: $(date -u "+%Y-%m")
124124

125125
# For PHP "nightly", we need to install with ignore platform reqs as not all dependencies allow installation.
126126
- name: Install Composer dependencies - with ignore platform
127127
if: ${{ matrix.php >= 8.4 }}
128-
uses: "ramsey/composer-install@v2"
128+
uses: "ramsey/composer-install@v3"
129129
with:
130130
composer-options: --ignore-platform-reqs
131131
custom-cache-suffix: $(date -u "+%Y-%m")

0 commit comments

Comments
 (0)