From 21c0aaf4171c1011732a4ca3301cb36691e61628 Mon Sep 17 00:00:00 2001 From: Badlop Date: Mon, 16 Jan 2023 13:46:51 +0100 Subject: [PATCH] Container: Replace set-output command with environment file Announced in: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/container.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 878499604..201c65d8b 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -42,7 +42,7 @@ jobs: - name: Get git describe id: gitdescribe - run: echo "::set-output name=ver::$(git describe --tags)" + run: echo "ver=$(git describe --tags)" >> $GITHUB_OUTPUT - name: Extract metadata (tags, labels) for Docker id: meta