From 87698c8a2c3ac73cdb2099c78a690fedc0251efb Mon Sep 17 00:00:00 2001 From: Wouter Wijsman Date: Wed, 8 Feb 2023 10:43:02 +0100 Subject: [PATCH 1/2] Update checkout and upload-artifact actions This gets rid of on of the deprecation warnings --- .github/workflows/compilation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compilation.yml b/.github/workflows/compilation.yml index 2fb87e3f..3c8fb5a6 100644 --- a/.github/workflows/compilation.yml +++ b/.github/workflows/compilation.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest container: ghcr.io/pspdev/psptoolchain:latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install dependencies run: | @@ -39,7 +39,7 @@ jobs: - name: Upload Samples artifacts if: ${{ success() }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: samples-${{ steps.slug.outputs.sha8 }} path: samples.tar.gz From a7b955283448045b2ec14cc63389167292166388 Mon Sep 17 00:00:00 2001 From: Wouter Wijsman Date: Thu, 22 Jun 2023 21:24:13 +0200 Subject: [PATCH 2/2] Replace set-output usage --- .github/workflows/compilation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compilation.yml b/.github/workflows/compilation.yml index 3c8fb5a6..f75c5ae4 100644 --- a/.github/workflows/compilation.yml +++ b/.github/workflows/compilation.yml @@ -27,7 +27,7 @@ jobs: - name: Get short SHA id: slug - run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)" + run: echo "sha8=$(echo ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_OUTPUT - name: Compile Examples run: |