Skip to content

Commit

Permalink
fix deprecated set-ouput command on workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
llaville committed Apr 16, 2024
1 parent e40c91c commit 21cf6d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ 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) >> $GITHUB_OUTPUT

- name: Cache Composer packages
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ 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) >> $GITHUB_OUTPUT

- name: Cache Composer packages
uses: actions/[email protected]
Expand Down

0 comments on commit 21cf6d7

Please sign in to comment.