Skip to content

Commit

Permalink
Update set-output
Browse files Browse the repository at this point in the history
  • Loading branch information
edoardocavazza committed Apr 9, 2024
1 parent 1832a48 commit 2bb8db2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
coverage: 'none'
- name: 'Discover Composer cache directory'
id: 'cachedir'
run: 'echo "::set-output name=path::$(composer global config cache-dir)"'
run: 'echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT'
- name: 'Share Composer cache across runs'
uses: 'actions/cache@v3'
with:
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
coverage: 'none'
- name: 'Discover Composer cache directory'
id: 'cachedir'
run: 'echo "::set-output name=path::$(composer global config cache-dir)"'
run: 'echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT'
- name: 'Share Composer cache across runs'
uses: 'actions/cache@v3'
with:
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
coverage: 'none' # Using PHPDBG
- name: 'Discover Composer cache directory'
id: 'cachedir'
run: 'echo "::set-output name=path::$(composer global config cache-dir)"'
run: 'echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT'
- name: 'Share Composer cache across runs'
uses: 'actions/cache@v3'
with:
Expand Down

0 comments on commit 2bb8db2

Please sign in to comment.