Skip to content

Commit

Permalink
Merge pull request #217 from PHPCSStandards/dependabot/github_actions…
Browse files Browse the repository at this point in the history
…/ramsey/composer-install-3

GH Actions: Bump ramsey/composer-install from 2 to 3
  • Loading branch information
jrfnl committed Mar 4, 2024
2 parents 290bcb6 + 195f25d commit f7c3dac
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integrationtest.yml
Expand Up @@ -141,15 +141,15 @@ jobs:
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
- name: Install Composer dependencies
if: ${{ matrix.php != '8.4' }}
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
composer-options: '--optimize-autoloader'
# Bust the cache at least once a month - output format: YYYY-MM.
custom-cache-suffix: $(date -u "+%Y-%m")

- name: Install Composer dependencies
if: ${{ matrix.php == '8.4' }}
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
composer-options: '--ignore-platform-reqs --optimize-autoloader'
custom-cache-suffix: $(date -u "+%Y-%m")
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phplint.yml
Expand Up @@ -37,7 +37,7 @@ jobs:
# Install dependencies and handle caching in one go.
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
- name: Install Composer dependencies
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
# Bust the cache at least once a month - output format: YYYY-MM.
custom-cache-suffix: $(date -u "+%Y-%m")
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quicktest.yml
Expand Up @@ -70,7 +70,7 @@ jobs:
# Install dependencies and handle caching in one go.
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
- name: Install Composer dependencies
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
composer-options: '--optimize-autoloader'
# Bust the cache at least once a month - output format: YYYY-MM.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/securitycheck.yml
Expand Up @@ -35,7 +35,7 @@ jobs:
# Install dependencies and handle caching in one go.
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
- name: Install Composer dependencies
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
# Bust the cache at least once a month - output format: YYYY-MM.
custom-cache-suffix: $(date -u "+%Y-%m")
Expand Down

0 comments on commit f7c3dac

Please sign in to comment.