Skip to content

Commit 622aee9

Browse files
committed
Stop using deprecated set-output command in workflows
DEV-1359 GitHub actions has deprecated set-output and save-state commands. https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
1 parent fbf9c4e commit 622aee9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/stackhpc-all-in-one.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ jobs:
176176
ssh_key="${ssh_key//$'\n'/'%0A'}"
177177
ssh_key="${ssh_key//$'\r'/'%0D'}"
178178
echo "::add-mask::$ssh_key"
179-
echo "::set-output name=ssh_key::$ssh_key"
179+
echo "ssh_key=$ssh_key" >> $GITHUB_OUTPUT
180180
181181
# The same tag may be reused (e.g. pr-123), so ensure we have the latest image.
182182
- name: Pull latest Kayobe image

0 commit comments

Comments
 (0)