From 24bc81719e242f3a54badc2724d37d4dd721f138 Mon Sep 17 00:00:00 2001 From: Arun Sathiya Date: Sat, 20 Jan 2024 01:24:16 -0800 Subject: [PATCH] ci: Use GITHUB_OUTPUT envvar instead of set-output command (#25) --- .github/workflows/container-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/container-build.yml b/.github/workflows/container-build.yml index b0677ca..2741a83 100644 --- a/.github/workflows/container-build.yml +++ b/.github/workflows/container-build.yml @@ -49,7 +49,7 @@ jobs: id: core-image run: | CORE_VERSION=$(./run.sh _transformAnsibleCoreVersion "${{ matrix.ansible-core-image }}") - echo "::set-output name=core-version::$CORE_VERSION" + echo "core-version=$CORE_VERSION" >> "$GITHUB_OUTPUT" - name: Docker meta id: meta