Skip to content

Commit

Permalink
using new actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jcvignoli committed Mar 15, 2024
1 parent 432b00f commit 262dd79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
php-extensions: ast
steps:
- name: "Checkout"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: "Setup PHP extension caching"
id: extcache
Expand All @@ -28,7 +28,7 @@ jobs:
key: php-extensions-${{ runner.os }}-foov4-${{ env.cache-version }}

- name: "Cache extensions"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.extcache.outputs.dir }}
key: ${{ steps.extcache.outputs.key }}-foov4
Expand All @@ -43,7 +43,7 @@ jobs:

- name: "Cache Composer dependencies"
id: composer-dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: vendor
key: composer-dependencies-${{ runner.os }}-foov4-${{ env.cache-version }}-${{ hashFiles('composer.json') }}
Expand Down

0 comments on commit 262dd79

Please sign in to comment.