From 30280c4c6933e8616ecfe10ec9853648dcd1a61e Mon Sep 17 00:00:00 2001 From: Robin Hahling Date: Thu, 13 Jul 2023 10:54:40 +0200 Subject: [PATCH] ci: replace deprecated use of set-output The set-output command is deprecated. See this blog post for more information: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ Signed-off-by: Robin Hahling --- .github/workflows/build-images-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-images-release.yaml b/.github/workflows/build-images-release.yaml index 9c41de6f8..8f5a17335 100644 --- a/.github/workflows/build-images-release.yaml +++ b/.github/workflows/build-images-release.yaml @@ -34,7 +34,7 @@ jobs: - name: Getting image tag id: tag run: | - echo ::set-output name=tag::${GITHUB_REF##*/} + echo "tag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT - name: Checkout Source Code uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3