Skip to content

Commit 250ebf3

Browse files
wip
1 parent e9ebaa9 commit 250ebf3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/actions/setup/action.yml

+2
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,15 @@ runs:
2222
- name: Setup cache environment
2323
id: extcache
2424
uses: shivammathur/cache-extensions@v1
25+
if: inputs.php-extensions == true
2526
with:
2627
php-version: ${{ inputs.php-version }}
2728
extensions: ${{ inputs.php-extensions }}
2829
key: php-extensions-${{ steps.get-cache-hash.outputs.hash }}
2930

3031
- name: Cache extensions
3132
uses: actions/cache@v4
33+
if: inputs.php-extensions == true
3234
with:
3335
path: ${{ steps.extcache.outputs.dir }}
3436
key: ${{ steps.extcache.outputs.key }}

.github/workflows/laravel-pint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: ./.github/actions/setup
2020
with:
2121
php-version: '8.3'
22-
php-extensions: none
22+
php-extensions: ''
2323

2424
- name: Install Laravel Pint
2525
run: composer global require laravel/pint

0 commit comments

Comments
 (0)