From 57ce143fc3427030086eb88c305a234d61885fd0 Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Fri, 13 Sep 2024 00:15:21 -0700 Subject: [PATCH] workflow: bump actions/* to v4 --- .github/workflows/build.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4c7e0cf..61137e5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,9 +19,12 @@ jobs: name: Build with Docker using devkitARM steps: - name: Checkout repo - uses: actions/checkout@v1 + uses: actions/checkout@v4 with: submodules: recursive + fetch-depth: 0 + - name: Setup environment + run: git config --global safe.directory '*' - name: Install tools run: | sudo apt-get update @@ -45,7 +48,7 @@ jobs: cp 3DS/Universal-Edit.3dsx ~/artifacts cp 3DS/Universal-Edit.cia ~/artifacts - name: Publish build to GH Actions - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: path: ~/artifacts/* name: build @@ -62,7 +65,7 @@ jobs: sudo apt-get update sudo apt-get install qrencode -y - name: Download artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: build path: build