@@ -82,15 +82,15 @@ jobs:
8282 Get-CIMInstance -Class Win32_Processor | Select-Object -Property Name
8383
8484 - name : checkout repository
85- uses : actions/checkout@v5
85+ uses : actions/checkout@v6
8686
8787 - uses : conda-incubator/setup-miniconda@v3
8888 with :
8989 auto-update-conda : true
9090
9191 - name : cache conda packages
9292 id : conda-cache
93- uses : actions/cache/restore@v4
93+ uses : actions/cache/restore@v5
9494 with :
9595 path : C:/Miniconda/envs/test
9696 key : conda:netlib:msvc
@@ -106,7 +106,7 @@ jobs:
106106
107107 - name : save conda cache
108108 if : ${{ steps.conda-cache.outputs.cache-hit != 'true' }}
109- uses : actions/cache/save@v4
109+ uses : actions/cache/save@v5
110110 with :
111111 path : C:/Miniconda/envs/test
112112 key : ${{ steps.conda-cache.outputs.cache-primary-key }}
@@ -170,7 +170,7 @@ jobs:
170170
171171 - name : restore ccache
172172 # Setup the GitHub cache used to maintain the ccache from one job to the next
173- uses : actions/cache/restore@v4
173+ uses : actions/cache/restore@v5
174174 with :
175175 path : ${{ steps.ccache-prepare.outputs.ccachedir }}
176176 key : ${{ steps.ccache-prepare.outputs.key }}
@@ -260,7 +260,7 @@ jobs:
260260 # Save the cache after we are done building
261261 # This helps to retain the ccache even if the subsequent steps are failing.
262262 if : always() && (steps.build.outcome != 'skipped')
263- uses : actions/cache/save@v4
263+ uses : actions/cache/save@v5
264264 with :
265265 path : ${{ steps.ccache-prepare.outputs.ccachedir }}
266266 key : ${{ steps.ccache-prepare.outputs.key }}
0 commit comments