Skip to content

Commit

Permalink
Use new GitHub syntax for deprecated set-output
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdoug committed Dec 1, 2022
1 parent d56c3ba commit 64825a9
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 @@ -53,7 +53,7 @@ jobs:

- name: Get composer cache directory
id: composercache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Set up build cache
uses: "actions/cache@v3"
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:

- name: Get composer cache directory
id: composercache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Set up build cache
uses: "actions/cache@v3"
Expand Down

0 comments on commit 64825a9

Please sign in to comment.