From c59a9abda822299675ac83252ecb1f10fb40501e Mon Sep 17 00:00:00 2001 From: lukeraymonddowning Date: Mon, 23 Sep 2024 11:51:06 +0100 Subject: [PATCH] wip --- .github/actions/setup/action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 897e280..605f222 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -14,11 +14,15 @@ inputs: runs: using: composite steps: + - name: Test + run: md5 -s "test" + shell: bash + - name: Get extension cache hash id: get-cache-hash env: PHP_EXTENSIONS: ${{ inputs.php-extensions }} - run: echo hash=$(echo md5 -s $PHP_EXTENSIONS) >> $GITHUB_OUTPUT + run: echo hash=$(md5 -s $PHP_EXTENSIONS) >> $GITHUB_OUTPUT shell: bash - name: Setup cache environment