3333
3434 steps :
3535 - name : Checkout repository
36- uses : actions/checkout@v3
36+ uses : actions/checkout@v6
3737
3838 - name : Print system information
3939 run : |
7676 fi
7777
7878 - name : Compilation cache
79- uses : actions/cache@v3
79+ uses : actions/cache@v5
8080 with :
8181 path : ~/.ccache
8282 # We include the commit sha in the cache key, as new cache entries are
@@ -253,7 +253,7 @@ jobs:
253253 ${{ matrix.target-prefix }}-ccache
254254
255255 - name : Checkout repository
256- uses : actions/checkout@v3
256+ uses : actions/checkout@v6
257257
258258 - name : Prepare ccache
259259 # Get cache location of ccache
@@ -266,7 +266,7 @@ jobs:
266266 echo "key=ccache-msys2-${{ matrix.msystem }}-${{ matrix.idx }}-${{ matrix.build-type }}-${{ github.ref }}-${{ github.sha }}" >> $GITHUB_OUTPUT
267267
268268 - name : Restore ccache
269- uses : actions/cache/restore@v3
269+ uses : actions/cache/restore@v5
270270 with :
271271 path : ${{ steps.ccache-prepare.outputs.ccachedir }}
272272 key : ${{ steps.ccache-prepare.outputs.key }}
@@ -311,7 +311,7 @@ jobs:
311311
312312 - name : Save ccache
313313 # Save the cache after we are done (successfully) building
314- uses : actions/cache/save@v3
314+ uses : actions/cache/save@v5
315315 with :
316316 path : ${{ steps.ccache-prepare.outputs.ccachedir }}
317317 key : ${{ steps.ccache-prepare.outputs.key }}
@@ -357,15 +357,15 @@ jobs:
357357
358358 steps :
359359 - name : Checkout repository
360- uses : actions/checkout@v3
360+ uses : actions/checkout@v6
361361
362362 - name : Install Dependencies
363363 run : |
364364 sudo apt-get update
365365 sudo apt-get install -y ccache gcc-${{ matrix.triple }} gfortran-${{ matrix.triple }} libgomp1-${{ matrix.target }}-cross
366366
367367 - name : Compilation cache
368- uses : actions/cache@v3
368+ uses : actions/cache@v5
369369 with :
370370 path : ~/.ccache
371371 key : ccache-${{ runner.os }}-${{ matrix.target }}-${{ github.ref }}-${{ github.sha }}
@@ -392,7 +392,7 @@ jobs:
392392
393393 steps :
394394 - name : Checkout repository
395- uses : actions/checkout@v3
395+ uses : actions/checkout@v6
396396
397397 - name : Install Dependencies
398398 run : |
0 commit comments