Skip to content

Commit

Permalink
Update actions in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
h1karo committed Dec 2, 2023
1 parent 899af7e commit fdfafa2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -32,10 +32,10 @@ jobs:
- name: Get Composer Cache Directory
id: composer-cache-dir
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache Composer packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache-dir.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
--coverage-html=coverage/phpunit/html \
--coverage-clover=coverage/phpunit/clover.xml
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v3
with:
name: Coverage report
path: coverage

0 comments on commit fdfafa2

Please sign in to comment.