shithub: psxe

Download patch

ref: f1ba2128cc5c64d01ee2e9edd680c105e87312bc
parent: ce3c94164a9c3784425ebc920574afc41fb5a5c2
author: allkern <lisandroaalarcon@gmail.com>
date: Thu Jun 22 19:24:05 EDT 2023

Revert to `actions/checkout`

--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -9,14 +9,13 @@
     runs-on: macos-latest
 
     steps:
+    - uses: actions/checkout@v3
+      with:
+        fetch-depth: 0
     - name: Install SDL2 and dylibbundler
       run: |
            brew install sdl2
            brew install dylibbundler
-    - name: Clone repository
-      run: |
-           git clone https://github.com/allkern/psx
-           cd psx
     - name: Build and pack PSXE
       run: |
            git fetch --all --tags
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -9,13 +9,12 @@
     runs-on: ubuntu-latest
 
     steps:
+    - uses: actions/checkout@v3
+      with:
+        fetch-depth: 0
     - name: Install SDL2
       run: |
            sudo apt install libsdl2-dev
-    - name: Clone repository
-      run: |
-           git clone https://github.com/allkern/psx
-           cd psx
     - name: Build PSXE
       run: |
            git fetch --all --tags
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -9,10 +9,9 @@
     runs-on: windows-latest
 
     steps:
-    - name: Clone repository
-      run: |
-           git clone https://github.com/allkern/psx
-           cd psx
+    - uses: actions/checkout@v3
+      with:
+        fetch-depth: 0
     - name: Run build-deps
       run: ./build-deps.ps1
     - name: 64-bit build
--