From 4e55323798d99ff7570bfa442754fb384ffa6990 Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Wed, 4 Sep 2024 09:45:48 -0700 Subject: [PATCH] workflow: update actions --- .github/workflows/building.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/building.yml b/.github/workflows/building.yml index ea33645..97b7037 100644 --- a/.github/workflows/building.yml +++ b/.github/workflows/building.yml @@ -19,7 +19,7 @@ jobs: name: Build with Docker using devkitARM steps: - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install tools run: | sudo apt-get update @@ -44,7 +44,7 @@ jobs: cp GodMode9i.cia ~/artifacts cp GodMode9i.7z ~/artifacts - name: Publish build to GH Actions - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: ~/artifacts/* name: build @@ -57,7 +57,7 @@ jobs: needs: build steps: - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: build path: build