From 6d7a48ec5115f35a025fe917227b82f36cfb911f Mon Sep 17 00:00:00 2001 From: kopackiw <26244440+kopackiw@users.noreply.github.com> Date: Wed, 9 Nov 2022 20:22:45 +0100 Subject: [PATCH] Upgrade from deprecated GH Actions `set-output` command --- tools/release-operator/src/github.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/release-operator/src/github.rs b/tools/release-operator/src/github.rs index 55c52e6d0..8c078ab59 100644 --- a/tools/release-operator/src/github.rs +++ b/tools/release-operator/src/github.rs @@ -71,6 +71,6 @@ impl Actions { // Set an "output" in GitHub Actions pub fn set_output(key: Outputs, value: &str) { log::debug!("setting output name={key} value={value}"); - println!("::set-output name={key}::{value}"); + println!("{key}={value} >> $GITHUB_OUTPUT"); } }