Skip to content

Commit

Permalink
ci: avoid deprecated set-output command
Browse files Browse the repository at this point in the history
  • Loading branch information
brotkrueml committed Feb 11, 2024
1 parent 6e2d4ea commit e440959
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache composer dependencies
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache composer dependencies
uses: actions/cache@v3
with:
Expand Down

0 comments on commit e440959

Please sign in to comment.