We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ebed1f commit 2bd878eCopy full SHA for 2bd878e
.github/actions/setup-composer/action.yml
@@ -5,10 +5,10 @@ runs:
5
steps:
6
- name: Get Composer Cache Directory
7
id: composer-cache
8
- run: |
9
- echo "::set-output name=dir::$(composer config cache-files-dir)"
10
shell: bash
11
- - uses: actions/cache@v2
+ run: |
+ echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
+ - uses: actions/cache@v3
12
with:
13
path: ${{ steps.composer-cache.outputs.dir }}
14
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
0 commit comments