Skip to content

Commit

Permalink
Merge pull request #682 from browscap/dependabot/github_actions/ramse…
Browse files Browse the repository at this point in the history
…y/composer-install-3

github-actions: bump ramsey/composer-install from 2 to 3
  • Loading branch information
mimmi20 authored Mar 22, 2024
2 parents b2f9d36 + 94473af commit d4e68f7
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,28 +140,28 @@ jobs:

- name: "Install lowest dependencies"
if: "${{ matrix.dependencies == 'lowest' }}"
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "${{ env.COMPOSER_OPTIONS }} --prefer-stable"

- name: "Install highest dependencies"
if: "${{ matrix.dependencies == 'highest' && matrix.experimental == false }}"
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "${{ env.COMPOSER_OPTIONS }} --prefer-stable"

- name: "Install highest dependencies (Experimental)"
if: "${{ matrix.dependencies == 'highest' && matrix.experimental == true }}"
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "${{ env.COMPOSER_OPTIONS }} --prefer-stable --ignore-platform-reqs"

- name: "Install locked dependencies"
if: "${{ matrix.dependencies == 'locked' }}"
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "${{ env.COMPOSER_OPTIONS }}"
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
tools: "${{ env.TOOLS }}, cs2pr"

- name: "Update dependencies with composer"
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "${{ env.COMPOSER_OPTIONS }} --prefer-stable"
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
tools: "${{ env.TOOLS }}"

- name: "Update dependencies with composer"
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "${{ env.COMPOSER_OPTIONS }}"
Expand Down Expand Up @@ -297,7 +297,7 @@ jobs:
tools: "${{ env.TOOLS }}"

- name: "Update dependencies with composer"
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "${{ env.COMPOSER_OPTIONS }} --prefer-stable"
Expand Down Expand Up @@ -343,7 +343,7 @@ jobs:
tools: "${{ env.TOOLS }}"

- name: "Update dependencies with composer"
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "${{ env.COMPOSER_OPTIONS }} --prefer-stable"
Expand Down Expand Up @@ -396,7 +396,7 @@ jobs:
tools: "${{ env.TOOLS }}"

- name: "Update dependencies with composer"
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "${{ env.COMPOSER_OPTIONS }} --prefer-stable"
Expand Down Expand Up @@ -449,7 +449,7 @@ jobs:
run: "composer require --no-update --no-interaction --prefer-dist --prefer-stable \"roave/backward-compatibility-check:^8\""

- name: "Update dependencies with composer"
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "${{ env.COMPOSER_OPTIONS }} --prefer-stable"
Expand Down

0 comments on commit d4e68f7

Please sign in to comment.