Skip to content

Commit

Permalink
Update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
whikloj committed Apr 17, 2024
1 parent b701e3b commit 54f611d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/v5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: PHP ${{ matrix.php-versions }} - OS ${{ matrix.host-os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -38,7 +38,7 @@ jobs:
if: ${{ startsWith( matrix.host-os , 'ubuntu') }}

- name: Cache dependencies (Ubuntu)
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composercache-ubuntu.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Expand All @@ -53,7 +53,7 @@ jobs:
if: ${{ startsWith( matrix.host-os , 'windows') }}

- name: Cache dependencies (Windows)
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composercache-windows.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Expand All @@ -71,7 +71,7 @@ jobs:
run: composer phpunit

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
file: ./clover.xml
fail_ci_if_error: true
Expand Down

0 comments on commit 54f611d

Please sign in to comment.