@@ -11,13 +11,13 @@ jobs:
1111 name : Build Cross-Compiler & Toolchain
1212 runs-on : ubuntu-latest
1313 steps :
14- - uses : actions/checkout@v4
14+ - uses : actions/checkout@v6
1515 with :
1616 submodules : recursive
1717
1818 - name : Cache cross Folder
1919 id : cache-cross
20- uses : actions/cache@v4
20+ uses : actions/cache@v5
2121 with :
2222 path : tools/cross
2323 key : ${{ runner.os }}-cross-${{ hashFiles('tools/Makefile') }}
5959
6060 steps :
6161 - name : Checkout repository
62- uses : actions/checkout@v4
62+ uses : actions/checkout@v6
6363
6464 - name : Check for cache
6565 id : check-cache
9494
9595 - name : Cache cross
9696 id : cache-cross
97- uses : actions/cache@v4
97+ uses : actions/cache@v5
9898 with :
9999 path : tools/cross
100100 key : ${{ runner.os }}-cross-${{ hashFiles('tools/Makefile') }}
@@ -116,14 +116,14 @@ jobs:
116116 runs-on : ubuntu-latest
117117 needs : [buildcompiler]
118118 steps :
119- - uses : actions/checkout@v4
119+ - uses : actions/checkout@v6
120120 with :
121121 submodules : recursive
122122 fetch-depth : 0
123123
124124 - name : Cache cross Folder
125125 id : cache-cross
126- uses : actions/cache@v4
126+ uses : actions/cache@v5
127127 with :
128128 path : tools/cross
129129 key : ${{ runner.os }}-cross-${{ hashFiles('tools/Makefile') }}
@@ -199,7 +199,7 @@ jobs:
199199
200200 - name : Upload Artifact
201201 if : always()
202- uses : actions/upload-artifact@v4
202+ uses : actions/upload-artifact@v6
203203 with :
204204 name : artifacts
205205 path : artifacts/
@@ -210,13 +210,13 @@ jobs:
210210 runs-on : ubuntu-latest
211211 needs : [compile]
212212 steps :
213- - uses : actions/checkout@v4
213+ - uses : actions/checkout@v6
214214 with :
215215 submodules : recursive
216216 fetch-depth : 0
217217
218218 - name : Download All Builds
219- uses : actions/download-artifact@v4
219+ uses : actions/download-artifact@v7
220220
221221 - name : Update Nightly
222222 run : gh release upload nightly artifacts/* -R ${{github.repository}} --clobber
0 commit comments