Skip to content

Commit

Permalink
Node.js 16 actions are deprecated.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtvbrianking committed Apr 15, 2024
1 parent f15d41d commit c6c4af1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
Expand All @@ -45,7 +45,7 @@ jobs:
coverage: pcov

- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.composer/cache/files
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
Expand All @@ -67,7 +67,7 @@ jobs:
run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover

- name: Save code coverage report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage.clover
Expand All @@ -86,15 +86,15 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}

- name: Retrieve code coverage report
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage

Expand Down

0 comments on commit c6c4af1

Please sign in to comment.