6565 - name : Restore local ddev cache
6666 if : ${{ inputs.install-mode == 'local' && inputs.cache-profile == 'local-ddev-base' }}
6767 id : restore-local-ddev-base-cache
68- uses : actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 .0.3
68+ uses : actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
6969 with :
7070 path : |
7171 ${{ runner.os == 'Windows' && '~\AppData\Local\uv\cache' || runner.os == 'macOS' && '~/Library/Caches/uv' || '~/.cache/uv' }}
9999 - name : Restore local ddev cache without base package
100100 if : ${{ inputs.install-mode == 'local' && inputs.cache-profile == 'local-ddev' }}
101101 id : restore-local-ddev-cache
102- uses : actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 .0.3
102+ uses : actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
103103 with :
104104 path : |
105105 ${{ runner.os == 'Windows' && '~\AppData\Local\uv\cache' || runner.os == 'macOS' && '~/Library/Caches/uv' || '~/.cache/uv' }}
@@ -130,7 +130,7 @@ runs:
130130 - name : Restore PyPI ddev cache
131131 if : ${{ inputs.install-mode == 'pypi' }}
132132 id : restore-pypi-ddev-cache
133- uses : actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 .0.3
133+ uses : actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
134134 with :
135135 path : |
136136 ${{ runner.os == 'Windows' && '~\AppData\Local\uv\cache' || runner.os == 'macOS' && '~/Library/Caches/uv' || '~/.cache/uv' }}
@@ -169,7 +169,7 @@ runs:
169169
170170 - name : Save local ddev cache
171171 if : ${{ inputs.install-mode == 'local' && inputs.cache-profile == 'local-ddev-base' && steps.restore-local-ddev-base-cache.outputs.cache-hit != 'true' }}
172- uses : actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 .0.3
172+ uses : actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
173173 continue-on-error : true
174174 with :
175175 path : |
@@ -179,7 +179,7 @@ runs:
179179
180180 - name : Save local ddev cache without base package
181181 if : ${{ inputs.install-mode == 'local' && inputs.cache-profile == 'local-ddev' && steps.restore-local-ddev-cache.outputs.cache-hit != 'true' }}
182- uses : actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 .0.3
182+ uses : actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
183183 continue-on-error : true
184184 with :
185185 path : |
@@ -189,7 +189,7 @@ runs:
189189
190190 - name : Save PyPI ddev cache
191191 if : ${{ inputs.install-mode == 'pypi' && steps.restore-pypi-ddev-cache.outputs.cache-hit != 'true' }}
192- uses : actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 .0.3
192+ uses : actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
193193 continue-on-error : true
194194 with :
195195 path : |
0 commit comments