4444 steps :
4545
4646 # Checkout project
47- - uses : actions/checkout@v4
47+ - uses : actions/checkout@v6
4848 with :
4949 submodules : true
5050
8888 shell : bash
8989 run : cmake --install . --config $BUILD_TYPE --prefix comp_cl --component cl
9090 - name : Upload Cl
91- uses : actions/upload-artifact@v4
91+ uses : actions/upload-artifact@v7
9292 with :
9393 name : ${{ matrix.artifact }}-cl
9494 path : build/comp_cl/
9898 shell : bash
9999 run : cmake --install . --config $BUILD_TYPE --prefix comp_lib --component lib
100100 - name : Upload Lib
101- uses : actions/upload-artifact@v4
101+ uses : actions/upload-artifact@v7
102102 with :
103103 name : ${{ matrix.artifact }}-lib
104104 path : build/comp_lib/
@@ -108,7 +108,7 @@ jobs:
108108 shell : bash
109109 run : cmake --install . --config $BUILD_TYPE --prefix comp_clib --component clib
110110 - name : Upload Clib
111- uses : actions/upload-artifact@v4
111+ uses : actions/upload-artifact@v7
112112 with :
113113 name : ${{matrix.artifact}}-clib
114114 path : build/comp_clib
@@ -118,35 +118,35 @@ jobs:
118118 working-directory : ${{github.workspace}}/build
119119 shell : bash
120120 run : |
121- cmake $GITHUB_WORKSPACE -DINKCPP_UNREAL_TARGET_VERSION="5.7" -DINKCPP_UNREAL=ON
121+ cmake $GITHUB_WORKSPACE -DINKCPP_UNREAL_TARGET_VERSION="5.7" -DINKCPP_UNREAL=ON -DINKCPP_INKLECATE=NONE
122122 cmake --install . --config $BUILD_TYPE --prefix comp_unreal_5_7 --component unreal
123- cmake $GITHUB_WORKSPACE -DINKCPP_UNREAL_TARGET_VERSION="5.6" -DINKCPP_UNREAL=ON
123+ cmake $GITHUB_WORKSPACE -DINKCPP_UNREAL_TARGET_VERSION="5.6" -DINKCPP_UNREAL=ON -DINKCPP_INKLECATE=NONE
124124 cmake --install . --config $BUILD_TYPE --prefix comp_unreal_5_6 --component unreal
125- cmake $GITHUB_WORKSPACE -DINKCPP_UNREAL_TARGET_VERSION="5.5" -DINKCPP_UNREAL=ON
125+ cmake $GITHUB_WORKSPACE -DINKCPP_UNREAL_TARGET_VERSION="5.5" -DINKCPP_UNREAL=ON -DINKCPP_INKLECATE=NONE
126126 cmake --install . --config $BUILD_TYPE --prefix comp_unreal_5_5 --component unreal
127- cmake $GITHUB_WORKSPACE -DINKCPP_UNREAL_TARGET_VERSION="5.4" -DINKCPP_UNREAL=ON
127+ cmake $GITHUB_WORKSPACE -DINKCPP_UNREAL_TARGET_VERSION="5.4" -DINKCPP_UNREAL=ON -DINKCPP_INKLECATE=NONE
128128 cmake --install . --config $BUILD_TYPE --prefix comp_unreal_5_4 --component unreal
129129 - name : Upload UE 5.7
130130 if : ${{ matrix.unreal }}
131- uses : actions/upload-artifact@v4
131+ uses : actions/upload-artifact@v7
132132 with :
133133 name : unreal_5_7
134134 path : build/comp_unreal_5_7/
135135 - name : Upload UE 5.6
136136 if : ${{ matrix.unreal }}
137- uses : actions/upload-artifact@v4
137+ uses : actions/upload-artifact@v7
138138 with :
139139 name : unreal_5_6
140140 path : build/comp_unreal_5_6/
141141 - name : Upload UE 5.5
142142 if : ${{ matrix.unreal }}
143- uses : actions/upload-artifact@v4
143+ uses : actions/upload-artifact@v7
144144 with :
145145 name : unreal_5_5
146146 path : build/comp_unreal_5_5/
147147 - name : Upload UE 5.4
148148 if : ${{ matrix.unreal }}
149- uses : actions/upload-artifact@v4
149+ uses : actions/upload-artifact@v7
150150 with :
151151 name : unreal_5_4
152152 path : build/comp_unreal_5_4/
@@ -183,15 +183,15 @@ jobs:
183183
184184 # Upload results artifact
185185 - name : Upload Results Artifact
186- uses : actions/upload-artifact@v4
186+ uses : actions/upload-artifact@v7
187187 with :
188188 name : result-${{ matrix.artifact }}
189189 path : proofing/ink-proof/${{ matrix.artifact }}.txt
190190
191191 # Upload website artifact
192192 - name : Upload Ink-Proof Website Artifact
193193 if : ${{ matrix.proof }}
194- uses : actions/upload-artifact@v4
194+ uses : actions/upload-artifact@v7
195195 with :
196196 name : ${{ matrix.artifact }}-www
197197 path : proofing/ink-proof/out
@@ -203,7 +203,7 @@ jobs:
203203 env :
204204 DOXYGEN_VERSION : " 1.17.0"
205205 steps :
206- - uses : actions/checkout@v4
206+ - uses : actions/checkout@v6
207207 with :
208208 submodules : true
209209 - name : Set upt Python
@@ -246,7 +246,7 @@ jobs:
246246 shell : bash
247247 run : cmake --build . --target doc --config Release
248248 - name : Upload
249- uses : actions/upload-artifact@v4
249+ uses : actions/upload-artifact@v7
250250 with :
251251 name : doxygen
252252 path : Documentation/
@@ -256,7 +256,7 @@ jobs:
256256 needs : compilation
257257 runs-on : ubuntu-latest
258258 steps :
259- - uses : actions/checkout@v4
259+ - uses : actions/checkout@v6
260260 with :
261261 submodules : true
262262 - name : Set up Python
@@ -296,7 +296,7 @@ jobs:
296296 run : |
297297 rm dist/*.whl
298298 - name : Upload Python files
299- uses : actions/upload-artifact@v4
299+ uses : actions/upload-artifact@v7
300300 with :
301301 name : python-package-distribution
302302 path : dist/
@@ -306,7 +306,7 @@ jobs:
306306 runs-on : ubuntu-latest
307307 if : ${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref == 'master' }}
308308 steps :
309- - uses : actions/checkout@v4
309+ - uses : actions/checkout@v6
310310 - name : Fetch master branch
311311 run : |
312312 git fetch origin master
@@ -329,7 +329,7 @@ jobs:
329329 runs-on : ubuntu-latest
330330 if : github.ref == 'refs/heads/master'
331331 steps :
332- - uses : actions/checkout@v4
332+ - uses : actions/checkout@v6
333333
334334 # Download Ink Proof page for Linux
335335 - uses : actions/download-artifact@v4
0 commit comments