From 87698c8a2c3ac73cdb2099c78a690fedc0251efb Mon Sep 17 00:00:00 2001 From: Wouter Wijsman Date: Wed, 8 Feb 2023 10:43:02 +0100 Subject: [PATCH] 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