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