From c553a2f8e8dad9ee3ba99ba899b580cffb73d56a Mon Sep 17 00:00:00 2001 From: Cornelius Roemer Date: Tue, 13 Feb 2024 00:07:06 +0100 Subject: [PATCH] chore: replace deprecated "::set-output" See https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/update-argocd-metadata.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-argocd-metadata.yml b/.github/workflows/update-argocd-metadata.yml index 88a25ccb2a..b5f847f6d6 100644 --- a/.github/workflows/update-argocd-metadata.yml +++ b/.github/workflows/update-argocd-metadata.yml @@ -21,7 +21,7 @@ jobs: - name: Get SHA - length 7 id: get_sha run: | - echo "::set-output name=sha::$(echo ${GITHUB_SHA} | cut -c1-7)" + echo "sha=$(echo ${GITHUB_SHA} | cut -c1-7)" >> $GITHUB_OUTPUT - name: Wait for Backend Docker Image uses: lewagon/wait-on-check-action@v1.3.3