From 2ec7424881b6143e371bb91fe10f271b0c8be9c1 Mon Sep 17 00:00:00 2001 From: Joel Lappalainen Date: Mon, 31 Jul 2023 15:25:53 +0300 Subject: [PATCH] Remove use of deprecated actions call --- .github/workflows/prod-pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prod-pipeline.yml b/.github/workflows/prod-pipeline.yml index 4703b5c4..23d55a63 100644 --- a/.github/workflows/prod-pipeline.yml +++ b/.github/workflows/prod-pipeline.yml @@ -17,7 +17,7 @@ jobs: id: check-tag run: | if [[ ${GITHUB_REF##*/} =~ ^202[0-9][0-1][0-9][0-3][0-9] ]]; then - echo ::set-output name=match::true + echo "{match}={true}" >> $GITHUB_OUTPUT fi - name: Push latest image as v3-prod if: steps.check-tag.outputs.match == 'true'