Skip to content

Commit

Permalink
Fix set-output deprecation in ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
umer936 authored Nov 1, 2024
1 parent 67a1f46 commit 13a3ec7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ 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@v1
with:
Expand Down

0 comments on commit 13a3ec7

Please sign in to comment.