Skip to content

Commit

Permalink
Merge pull request #626 from cakephp/3.x-fix-workflow-deprecations
Browse files Browse the repository at this point in the history
3.x - Fix workflow deprecations.
  • Loading branch information
dereuromark authored Aug 29, 2023
2 parents e765a6e + 93b7658 commit 88c13a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,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 "date=$(date +'%Y-%m')" >> $GITHUB_OUTPUT

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

0 comments on commit 88c13a9

Please sign in to comment.