Skip to content

Commit 492c60b

Browse files
fix: Replace deprecated set-output with GITHUB_OUTPUT env
See [this link](https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/) for more information.
1 parent ab381c4 commit 492c60b

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

action.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ runs:
4141
fi
4242
4343
echo "Download URL: ${download_url}"
44-
echo "::set-output name=download_url::${download_url}"
44+
echo "download_url=${download_url}" >> $GITHUB_OUTPUT
45+
4546
4647
- name: Download Jython Installer
4748
shell: bash
@@ -82,8 +83,6 @@ runs:
8283
--silent \
8384
--directory ~/jython/ \
8485
--type standard;
85-
86-
echo "::set-output name=download_url::${download_url}"
8786
8887
- name: Setup Jython alias
8988
shell: bash

0 commit comments

Comments
 (0)