From aef5a102dd685c39f839ac35442adb54aa754723 Mon Sep 17 00:00:00 2001 From: &Olga <462484+andOlga@users.noreply.github.com> Date: Fri, 31 Mar 2023 12:05:10 +0400 Subject: [PATCH] github: Update GitHub Actions "make" script Update to the latest supported GitHub API: * Update from v2 to v3 of actions/checkout. * Update from ::set-output to $GITHUB_OUTPUT. --- .github/workflows/make.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index aeea6084..14836165 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Get full repository history @@ -42,7 +42,7 @@ jobs: if [[ ${VERSION:0:1} == "v" ]]; then export VERSION=${VERSION:1} fi - echo "::set-output name=VERSION::$VERSION" + echo "VERSION=$VERSION" >> $GITHUB_OUTPUT - name: Upload Freedoom uses: actions/upload-artifact@v1 with: @@ -53,4 +53,3 @@ jobs: with: path: "artifacts/freedm" name: freedm-${{steps.buildstep.outputs.VERSION}} -