@@ -20,11 +20,11 @@ jobs:
2020 runs-on : ubuntu-latest
2121 timeout-minutes : 20
2222 steps :
23- - uses : actions/checkout@v4
23+ - uses : actions/checkout@v5
2424 with :
2525 submodules : recursive
2626 - name : Cache ccache
27- uses : actions/cache@v4
27+ uses : actions/cache@v5
2828 with :
2929 path : ${{ github.workspace }}/.ccache/linux
3030 key : linux-ccache-${{ runner.os }}-${{ env.BUILD_TYPE }}-${{ hashFiles('**/CMakeLists.txt') }}
5252 run : ctest -C ${{env.BUILD_TYPE}} --output-on-failure
5353 - name : Upload logs on failure
5454 if : failure()
55- uses : actions/upload-artifact@v4
55+ uses : actions/upload-artifact@v6
5656 with :
5757 name : logs-${{ github.job }}
5858 path : |
6363 retention-days : ${{ github.event_name == 'pull_request' && 7 || 30 }}
6464 - name : Upload artifact
6565 if : always()
66- uses : actions/upload-artifact@v4
66+ uses : actions/upload-artifact@v6
6767 with :
6868 name : DingusPPC-LINUX
6969 path : ${{github.workspace}}/build/bin
@@ -83,11 +83,11 @@ jobs:
8383 brew_prefix : /usr/local
8484 runs-on : ${{ matrix.runner }}
8585 steps :
86- - uses : actions/checkout@v4
86+ - uses : actions/checkout@v5
8787 with :
8888 submodules : recursive
8989 - name : Cache ccache
90- uses : actions/cache@v4
90+ uses : actions/cache@v5
9191 with :
9292 path : ${{ github.workspace }}/.ccache/${{ matrix.arch }}
9393 key : macos-${{ matrix.runner }}-${{ matrix.arch }}-ccache-${{ env.BUILD_TYPE }}-${{ hashFiles('**/CMakeLists.txt') }}
@@ -113,7 +113,7 @@ jobs:
113113 run : ctest -C ${{env.BUILD_TYPE}} --output-on-failure
114114 - name : Upload logs on failure
115115 if : failure()
116- uses : actions/upload-artifact@v4
116+ uses : actions/upload-artifact@v6
117117 with :
118118 name : logs-${{ github.job }}-${{ matrix.arch }}
119119 path : |
@@ -124,7 +124,7 @@ jobs:
124124 retention-days : ${{ github.event_name == 'pull_request' && 7 || 30 }}
125125 - name : Upload artifact
126126 if : always()
127- uses : actions/upload-artifact@v4
127+ uses : actions/upload-artifact@v6
128128 with :
129129 name : DingusPPC-macOS-${{ matrix.arch }}
130130 path : ${{github.workspace}}/build/bin
@@ -137,11 +137,11 @@ jobs:
137137 MSYSTEM : MINGW64
138138 steps :
139139 - name : Checkout repository
140- uses : actions/checkout@v4
140+ uses : actions/checkout@v5
141141 with :
142142 submodules : recursive
143143 - name : Cache ccache
144- uses : actions/cache@v4
144+ uses : actions/cache@v5
145145 with :
146146 path : ${{ github.workspace }}/.ccache/msys
147147 key : windows-msys-ccache-${{ env.BUILD_TYPE }}-${{ hashFiles('**/CMakeLists.txt') }}
@@ -183,7 +183,7 @@ jobs:
183183 ctest --output-on-failure --parallel
184184 - name : Upload logs on failure
185185 if : failure()
186- uses : actions/upload-artifact@v4
186+ uses : actions/upload-artifact@v6
187187 with :
188188 name : logs-${{ github.job }}
189189 path : |
@@ -194,7 +194,7 @@ jobs:
194194 retention-days : ${{ github.event_name == 'pull_request' && 7 || 30 }}
195195 - name : Upload artifact
196196 if : always()
197- uses : actions/upload-artifact@v4
197+ uses : actions/upload-artifact@v6
198198 with :
199199 name : DingusPPC-MSYS
200200 path : ${{github.workspace}}/build/bin
@@ -225,11 +225,11 @@ jobs:
225225 ccache_args : " "
226226 upload_suffix : MSBUILD
227227 steps :
228- - uses : actions/checkout@v4
228+ - uses : actions/checkout@v5
229229 with :
230230 submodules : recursive
231231 - name : Setup msbuild
232- uses : microsoft/setup-msbuild@v1
232+ uses : microsoft/setup-msbuild@v3
233233 - name : Install vcpkg packages
234234 shell : cmd
235235 run : ' "%VCPKG_INSTALLATION_ROOT%\vcpkg.exe" install --triplet x64-windows'
@@ -238,7 +238,7 @@ jobs:
238238 run : choco install ninja -y
239239 - name : Cache ccache
240240 if : matrix.generator == 'Ninja'
241- uses : actions/cache@v4
241+ uses : actions/cache@v5
242242 with :
243243 path : ${{ github.workspace }}/.ccache/vsbuild-${{ matrix.name }}
244244 key : vsbuild-${{ matrix.name }}-ccache-${{ env.BUILD_TYPE }}-${{ hashFiles('**/CMakeLists.txt') }}
@@ -267,7 +267,7 @@ jobs:
267267 run : ctest -C ${{env.BUILD_TYPE}} --output-on-failure
268268 - name : Upload logs on failure
269269 if : failure()
270- uses : actions/upload-artifact@v4
270+ uses : actions/upload-artifact@v6
271271 with :
272272 name : logs-${{ github.job }}-${{ matrix.name }}
273273 path : |
@@ -278,7 +278,7 @@ jobs:
278278 retention-days : ${{ github.event_name == 'pull_request' && 7 || 30 }}
279279 - name : Upload artifact
280280 if : always()
281- uses : actions/upload-artifact@v4
281+ uses : actions/upload-artifact@v6
282282 with :
283283 name : DingusPPC-${{ matrix.upload_suffix }}
284284 path : ${{github.workspace}}/build/bin
0 commit comments