Skip to content

Commit 731e24c

Browse files
committed
Remove ::set-output
set-output is deprecated - using the suggested change from https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
1 parent a5816ba commit 731e24c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/theme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Get Composer Cache Directory
2222
id: composer-cache
2323
run: |
24-
echo "::set-output name=dir::$(composer config cache-files-dir)"
24+
echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT"
2525
- uses: actions/cache@v4
2626
with:
2727
path: ${{ steps.composer-cache.outputs.dir }}

0 commit comments

Comments
 (0)