Skip to content

Commit

Permalink
chore: replace deprecated ::set-output in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
fquffio committed Nov 21, 2022
1 parent ea46301 commit 0cc9d03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- 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_STATE'

- name: 'Share Composer cache across runs'
uses: 'actions/cache@v3'
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:

- 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_STATE'

- name: 'Share Composer cache across runs'
uses: 'actions/cache@v3'
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:

- 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_STATE'

- name: 'Share Composer cache across runs'
uses: 'actions/cache@v3'
Expand Down

0 comments on commit 0cc9d03

Please sign in to comment.