Skip to content

Commit

Permalink
fix: replace outdated set-output in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalipso0505 committed Jun 7, 2024
1 parent 6c88f05 commit ee65914
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ jobs:
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
run: |
echo "dir=$(composer config cache-files-dir)"
echo "dir::save-state name=dir::$(composer config cache-files-dir)"
- name: Cache dependencies
uses: actions/cache@v2
Expand Down Expand Up @@ -105,7 +107,9 @@ jobs:
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
run: |
echo "dir=$(composer config cache-files-dir)"
echo "dir::save-state name=dir::$(composer config cache-files-dir)"
- name: Cache dependencies
uses: actions/cache@v2
Expand Down

0 comments on commit ee65914

Please sign in to comment.