Skip to content

Commit

Permalink
update GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
VasekPurchart committed Nov 15, 2024
1 parent 53aaa06 commit 176f9b7
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
steps:
-
name: 'Checkout'
uses: 'actions/checkout@v3.3.0'
uses: 'actions/checkout@v4.2.2'
-
name: 'Setup PHP ${{ env.CONSISTENCE_PHP_VERSION }}'
uses: 'shivammathur/setup-php@2.24.0'
uses: 'shivammathur/setup-php@2.31.1'
with:
php-version: '${{ env.CONSISTENCE_PHP_VERSION }}'
coverage: 'none'
Expand All @@ -29,7 +29,7 @@ jobs:
run: 'echo "::add-matcher::${{ runner.tool_cache }}/php.json"'
-
name: 'Composer install'
uses: 'ramsey/composer-install@2.2.0'
uses: 'ramsey/composer-install@3.0.0'
with:
dependency-versions: 'highest'
-
Expand All @@ -52,10 +52,10 @@ jobs:
steps:
-
name: 'Checkout'
uses: 'actions/checkout@v3.3.0'
uses: 'actions/checkout@v4.2.2'
-
name: 'Setup PHP ${{ matrix.php-version }}'
uses: 'shivammathur/setup-php@2.24.0'
uses: 'shivammathur/setup-php@2.31.1'
with:
php-version: '${{ matrix.php-version }}'
coverage: 'none'
Expand All @@ -64,7 +64,7 @@ jobs:
run: 'echo "::add-matcher::${{ runner.tool_cache }}/php.json"'
-
name: 'Composer install'
uses: 'ramsey/composer-install@2.2.0'
uses: 'ramsey/composer-install@3.0.0'
with:
dependency-versions: 'highest'
-
Expand All @@ -79,10 +79,10 @@ jobs:
steps:
-
name: 'Checkout'
uses: 'actions/checkout@v3.3.0'
uses: 'actions/checkout@v4.2.2'
-
name: 'Setup PHP ${{ env.CONSISTENCE_PHP_VERSION }}'
uses: 'shivammathur/setup-php@2.24.0'
uses: 'shivammathur/setup-php@2.31.1'
with:
php-version: '${{ env.CONSISTENCE_PHP_VERSION }}'
coverage: 'none'
Expand All @@ -92,7 +92,7 @@ jobs:
run: 'echo "::add-matcher::${{ runner.tool_cache }}/php.json"'
-
name: 'Composer install'
uses: 'ramsey/composer-install@2.2.0'
uses: 'ramsey/composer-install@3.0.0'
with:
dependency-versions: 'highest'
-
Expand All @@ -107,10 +107,10 @@ jobs:
steps:
-
name: 'Checkout'
uses: 'actions/checkout@v3.3.0'
uses: 'actions/checkout@v4.2.2'
-
name: 'Setup PHP ${{ env.CONSISTENCE_PHP_VERSION }}'
uses: 'shivammathur/setup-php@2.24.0'
uses: 'shivammathur/setup-php@2.31.1'
with:
php-version: '${{ env.CONSISTENCE_PHP_VERSION }}'
coverage: 'none'
Expand All @@ -119,7 +119,7 @@ jobs:
run: 'echo "::add-matcher::${{ runner.tool_cache }}/php.json"'
-
name: 'Composer install'
uses: 'ramsey/composer-install@2.2.0'
uses: 'ramsey/composer-install@3.0.0'
with:
dependency-versions: 'highest'
-
Expand All @@ -145,10 +145,10 @@ jobs:
steps:
-
name: 'Checkout'
uses: 'actions/checkout@v3.3.0'
uses: 'actions/checkout@v4.2.2'
-
name: 'Setup PHP ${{ matrix.php-version }}'
uses: 'shivammathur/setup-php@2.24.0'
uses: 'shivammathur/setup-php@2.31.1'
with:
php-version: '${{ matrix.php-version }}'
coverage: 'xdebug'
Expand All @@ -160,7 +160,7 @@ jobs:
run: 'echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"'
-
name: 'Composer install'
uses: 'ramsey/composer-install@2.2.0'
uses: 'ramsey/composer-install@3.0.0'
with:
dependency-versions: '${{ matrix.composer-dependencies }}'
-
Expand All @@ -184,7 +184,7 @@ jobs:
steps:
-
name: 'Finish Coveralls upload'
uses: 'coverallsapp/github-action@v1.2.4'
uses: 'coverallsapp/github-action@v2.3.4'
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
parallel-finished: true

0 comments on commit 176f9b7

Please sign in to comment.