Skip to content

Commit 30b9c76

Browse files
committed
Update GitHub Actions
1 parent c95b57b commit 30b9c76

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/tests.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,21 @@ jobs:
2626
submodules: recursive
2727
ref: ${{ github.head_ref || github.ref_name }}
2828

29+
- name: Cache Composer dependencies
30+
uses: actions/cache@v4
31+
with:
32+
path: ${{ steps.composer-cache.outputs.dir }}
33+
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
34+
restore-keys: |
35+
${{ runner.os }}-composer-
36+
37+
- name: Install dependencies
38+
uses: php-actions/composer@v6
39+
env:
40+
COMPOSER_AUTH: '{"github-oauth": {"github.com": "${{ github.token }}"} }'
41+
with:
42+
php_version: '8.4'
43+
2944
- name: Create Docs Markdown
3045
uses: phpDocumentor/[email protected]
3146
with:

0 commit comments

Comments
 (0)