diff --git a/entrypoint.sh b/entrypoint.sh index c391300..679fd00 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -90,7 +90,7 @@ populating_secret() { # Prepare the secret_value to be outputed properly (especially multiline secrets) secret_value=$(echo "$secret_value" | awk -v ORS='%0A' '1') - echo "::set-output name=$env_var::$secret_value" + echo "$env_var=$secret_value" >> "$GITHUB_OUTPUT" fi managed_variables+=("$env_var")