Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeraymonddowning committed Sep 23, 2024
1 parent acdf866 commit afa6ddb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
id: get-cache-hash
env:
PHP_EXTENSIONS: ${{ inputs.php-extensions }}
run: echo hash=$(echo $PHP_EXTENSIONS | md5sum | awk '{ print $1 }') >> $GITHUB_OUTPUT
run: echo cache-hash=$(echo $PHP_EXTENSIONS | md5sum | awk '{ print $1 }') >> $GITHUB_OUTPUT
shell: bash

- name: Setup cache environment
Expand All @@ -27,7 +27,7 @@ runs:
with:
php-version: ${{ inputs.php-version }}
extensions: ${{ inputs.php-extensions }}
key: ${{ steps.get-cache-hash.hash }}
key: ${{ steps.get-cache-hash.cache-hash }}

- name: Cache extensions
uses: actions/cache@v4
Expand Down

0 comments on commit afa6ddb

Please sign in to comment.