Skip to content

Commit

Permalink
ci: Update deprecated set-output
Browse files Browse the repository at this point in the history
  • Loading branch information
liqueurdetoile committed Nov 1, 2022
1 parent bc26e80 commit 63d0c07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -72,11 +72,11 @@ 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: Get date part for cache key
id: key-date
run: echo "::set-output name=date::$(date +'%Y-%m')"
run: echo "name=$(date +'%Y-%m')" >> $GITHUB_OUTPUT

- name: Cache composer dependencies
uses: actions/cache@v3
Expand Down

0 comments on commit 63d0c07

Please sign in to comment.