From cf1f2a8674fae17ee5e7b4fc18db8ab0db52dc27 Mon Sep 17 00:00:00 2001 From: ValdikSS Date: Tue, 23 Jul 2024 07:14:35 +0300 Subject: [PATCH] Actions: use $GITHUB_OUTPUT instead of ::set-output --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bf0617d..0636d89 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: - name: Declare short commit variable id: vars run: | - echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" + echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT - name: Install MinGW-w64 run: >