From 30b53f505b62e1bae4402d6e73d8e2f2a9bc57aa Mon Sep 17 00:00:00 2001 From: Luigi Pinca Date: Tue, 18 Oct 2022 13:49:42 +0200 Subject: [PATCH] [ci] Do not use the set-output command The `set-output` command is deprecated. Use the `GITHUB_OUTPUT` environment file. Refs: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f442ce..7aefdf2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -82,7 +82,7 @@ jobs: - uses: actions/download-artifact@v3 with: path: prebuilds - - run: echo ::set-output name=version::$(git describe --tags) + - run: echo "version=$(git describe --tags)" >> $GITHUB_OUTPUT id: get_version - run: tar -cvf "${{ steps.get_version.outputs.version