From b88f7b87b7ca74e7f12e7a4d23f47c54110e56ed Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 6 Jan 2023 09:31:33 +0100 Subject: [PATCH] Use env file instead of deprecated set-output Contributes to CURA-8607 --- .github/workflows/cura-installer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cura-installer.yml b/.github/workflows/cura-installer.yml index 0c760b19a0..e260c7c86d 100644 --- a/.github/workflows/cura-installer.yml +++ b/.github/workflows/cura-installer.yml @@ -164,7 +164,7 @@ jobs: $pfxPath = Join-Path -Path $env:RUNNER_TEMP -ChildPath "cert.pfx"; $encodedBytes = [System.Convert]::FromBase64String($env:PFX_CONTENT); Set-Content $pfxPath -Value $encodedBytes -AsByteStream; - Write-Output "::set-output name=PFX_PATH::$pfxPath"; + Add-Content [-Path] $Env:GITHUB_OUTPUT [-Value] "PFX_PATH=$pfxPath"; - name: Clean Conan local cache if: ${{ inputs.conan_clean_local_cache }}