Skip to content

Commit 85e619f

Browse files
authored
Resolve set-output deprecation (#49)
See https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ @cderv We have until May 2023 before this is removed, so no hurry, but since you added that line of code, I wanted to run this PR by you just to make sure you're ok with it.
1 parent c1016e3 commit 85e619f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ runs:
4949
# download a specific release
5050
wget https://github.com/quarto-dev/quarto-cli/releases/download/v${{inputs.version}}/quarto-${{inputs.version}}-${{env.BUNDLE_EXT}}
5151
fi
52-
echo "::set-output name=installer::$(ls quarto*${{ env.BUNDLE_EXT }})"
52+
echo "installer=$(ls quarto*${{ env.BUNDLE_EXT }})" >> $GITHUB_OUTPUT
5353
fi
5454
shell: bash
5555
- name: 'Install Quarto'

0 commit comments

Comments
 (0)