@@ -107,7 +107,7 @@ jobs:
107107
108108 - name : Cache asdf artifact
109109 id : asdf_artifact_cache
110- uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
110+ uses : actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
111111 with :
112112 path : asdf.tar.gz
113113 key : ${{ steps.artifact_cache_key.outputs.key }}
@@ -116,7 +116,7 @@ jobs:
116116 - name : Cache asdf with installed npm packages
117117 if : ${{ steps.asdf_artifact_cache.outputs.cache-hit != 'true' }}
118118 id : installed_cache
119- uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
119+ uses : actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
120120 with :
121121 path : ~/.asdf
122122 key : ${{ steps.installed_cache_key.outputs.key }}
@@ -125,7 +125,7 @@ jobs:
125125 - name : Cache asdf
126126 if : ${{ steps.installed_cache.outcome == 'success' && steps.installed_cache.outputs.cache-hit != 'true' }}
127127 id : asdf_cache
128- uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
128+ uses : actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
129129 with :
130130 path : ~/.asdf
131131 key : ${{ steps.asdf_cache_key.outputs.key }}
@@ -153,7 +153,7 @@ jobs:
153153 tar -czf asdf.tar.gz -C "$HOME" .asdf
154154
155155 - name : Upload asdf artifact
156- uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
156+ uses : actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
157157 with :
158158 name : asdf_artifact
159159 path : asdf.tar.gz
@@ -166,7 +166,7 @@ jobs:
166166 cp releaseNotesTemplates/commit.hbs config_artifact/releaseNotesTemplates/
167167
168168 - name : Upload config artifact
169- uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
169+ uses : actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
170170 with :
171171 name : config_artifact
172172 path : config_artifact/
@@ -181,7 +181,7 @@ jobs:
181181 next_version_tag : ${{ steps.output_version_tag.outputs.NEXT_VERSION_TAG }}
182182 steps :
183183 - name : Fetch asdf artifact
184- uses : actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
184+ uses : actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
185185 with :
186186 name : asdf_artifact
187187 - name : Install asdf
@@ -225,13 +225,13 @@ jobs:
225225 BRANCH_NAME : ${{ inputs.branch_name }}
226226
227227 - name : Fetch semantic-release config
228- uses : actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
228+ uses : actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
229229 with :
230230 name : config_artifact
231231
232232 - name : Cache asdf
233233 if : ${{ inputs.publish_package }}
234- uses : actions/cache@v4
234+ uses : actions/cache@v5
235235 with :
236236 path : |
237237 ~/.asdf
@@ -255,7 +255,7 @@ jobs:
255255
256256 - name : Download extra artifact
257257 if : ${{ inputs.extra_artifact_name != '' }}
258- uses : actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
258+ uses : actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
259259 with :
260260 artifact-ids : ${{ inputs.extra_artifact_id }}
261261 github-token : ${{ secrets.GITHUB_TOKEN }}
0 commit comments