@@ -108,7 +108,7 @@ jobs:
108108 run : |
109109 make compile
110110 - name : Upload artifact for docker build step
111- uses : actions/upload-artifact@v4
111+ uses : actions/upload-artifact@v5
112112 with :
113113 retention-days : 1
114114 name : ${{ inputs.repo_name }}-${{ matrix.goos }}-${{ matrix.goarch }}
@@ -140,12 +140,12 @@ jobs:
140140 uses : docker/setup-buildx-action@v3
141141 - name : Download all artifacts from build job with bin path
142142 if : ${{ inputs.artifact_path }}
143- uses : actions/download-artifact@v5
143+ uses : actions/download-artifact@v6
144144 with :
145145 path : bin
146146 - name : Download all artifacts from build job without bin path
147147 if : ${{ ! inputs.artifact_path }}
148- uses : actions/download-artifact@v5
148+ uses : actions/download-artifact@v6
149149 - uses : docker/login-action@v3
150150 with :
151151 username : ${{ secrets.dockerhub_username }}
@@ -214,7 +214,7 @@ jobs:
214214 & $scriptPath
215215 }
216216 - name : Upload artifact for docker build step
217- uses : actions/upload-artifact@v4
217+ uses : actions/upload-artifact@v5
218218 with :
219219 retention-days : 1
220220 name : ${{ inputs.repo_name }}-windows-${{ matrix.windows.tag }}-amd64
@@ -236,14 +236,14 @@ jobs:
236236 - uses : actions/checkout@v5
237237 - name : Download Windows artifacts from build job with bin path
238238 if : ${{ inputs.artifact_path }}
239- uses : actions/download-artifact@v5
239+ uses : actions/download-artifact@v6
240240 with :
241241 pattern : ' *-windows-*'
242242 path : bin
243243 merge-multiple : true
244244 - name : Download Windows artifacts from build job without bin path
245245 if : ${{ ! inputs.artifact_path }}
246- uses : actions/download-artifact@v5
246+ uses : actions/download-artifact@v6
247247 with :
248248 pattern : ' *-windows-*'
249249 merge-multiple : true
0 commit comments