summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--.github/workflows/verify.yml10
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d3400670a..8ec7e3c69 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -13,7 +13,7 @@ jobs:
13 container: yuzuemu/build-environments:linux-transifex 13 container: yuzuemu/build-environments:linux-transifex
14 if: ${{ github.repository == 'yuzu-emu/yuzu' && !github.head_ref }} 14 if: ${{ github.repository == 'yuzu-emu/yuzu' && !github.head_ref }}
15 steps: 15 steps:
16 - uses: actions/checkout@v2 16 - uses: actions/checkout@v3
17 with: 17 with:
18 submodules: recursive 18 submodules: recursive
19 fetch-depth: 0 19 fetch-depth: 0
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml
index 7e39ef847..c1886b9f3 100644
--- a/.github/workflows/verify.yml
+++ b/.github/workflows/verify.yml
@@ -12,7 +12,7 @@ jobs:
12 image: yuzuemu/build-environments:linux-clang-format 12 image: yuzuemu/build-environments:linux-clang-format
13 options: -u 1001 13 options: -u 1001
14 steps: 14 steps:
15 - uses: actions/checkout@v2 15 - uses: actions/checkout@v3
16 with: 16 with:
17 submodules: false 17 submodules: false
18 - name: 'Verify Formatting' 18 - name: 'Verify Formatting'
@@ -35,12 +35,12 @@ jobs:
35 image: yuzuemu/build-environments:${{ matrix.image }} 35 image: yuzuemu/build-environments:${{ matrix.image }}
36 options: -u 1001 36 options: -u 1001
37 steps: 37 steps:
38 - uses: actions/checkout@v2 38 - uses: actions/checkout@v3
39 with: 39 with:
40 submodules: recursive 40 submodules: recursive
41 fetch-depth: 0 41 fetch-depth: 0
42 - name: Set up cache 42 - name: Set up cache
43 uses: actions/cache@v2 43 uses: actions/cache@v3
44 id: ccache-restore 44 id: ccache-restore
45 with: 45 with:
46 path: ~/.ccache 46 path: ~/.ccache
@@ -69,7 +69,7 @@ jobs:
69 runs-on: windows-2019 69 runs-on: windows-2019
70 steps: 70 steps:
71 - name: Set up cache 71 - name: Set up cache
72 uses: actions/cache@v2 72 uses: actions/cache@v3
73 with: 73 with:
74 path: ~/.buildcache 74 path: ~/.buildcache
75 key: ${{ runner.os }}-msvc-${{ github.sha }} 75 key: ${{ runner.os }}-msvc-${{ github.sha }}
@@ -89,7 +89,7 @@ jobs:
89 echo %PATH% >> %GITHUB_PATH% 89 echo %PATH% >> %GITHUB_PATH%
90 - name: Set up MSVC 90 - name: Set up MSVC
91 uses: ilammy/msvc-dev-cmd@v1 91 uses: ilammy/msvc-dev-cmd@v1
92 - uses: actions/checkout@v2 92 - uses: actions/checkout@v3
93 with: 93 with:
94 submodules: recursive 94 submodules: recursive
95 fetch-depth: 0 95 fetch-depth: 0