3131 version : ${{ steps.version.outputs.version }}
3232 should_release : ${{ steps.check.outputs.should_release }}
3333 steps :
34- - uses : actions/checkout@v6
34+ - uses : actions/checkout@v7
3535 with :
3636 fetch-depth : 0
3737
@@ -117,7 +117,7 @@ jobs:
117117 if : needs.prepare.outputs.should_release == 'true'
118118 runs-on : ubuntu-latest
119119 steps :
120- - uses : actions/checkout@v6
120+ - uses : actions/checkout@v7
121121
122122 - name : Setup Bun
123123 uses : oven-sh/setup-bun@v2
@@ -157,7 +157,7 @@ jobs:
157157 artifact : autohand-windows-x64.exe
158158
159159 steps :
160- - uses : actions/checkout@v6
160+ - uses : actions/checkout@v7
161161
162162 - name : Setup Bun
163163 uses : oven-sh/setup-bun@v2
@@ -212,7 +212,7 @@ jobs:
212212 echo "Smoke test passed!"
213213
214214 - name : Upload artifact
215- uses : actions/upload-artifact@v4
215+ uses : actions/upload-artifact@v7
216216 with :
217217 name : ${{ matrix.artifact }}
218218 path : ./binaries/${{ matrix.artifact }}
@@ -223,7 +223,7 @@ jobs:
223223 if : needs.prepare.outputs.should_release == 'true'
224224 runs-on : ubuntu-latest
225225 steps :
226- - uses : actions/checkout@v6
226+ - uses : actions/checkout@v7
227227 with :
228228 fetch-depth : 0
229229 token : ${{ secrets.GITHUB_TOKEN }}
@@ -249,7 +249,7 @@ jobs:
249249 git push origin ${{ github.ref_name }} || echo "No changes to push"
250250
251251 - name : Download all artifacts
252- uses : actions/download-artifact@v4
252+ uses : actions/download-artifact@v8
253253 with :
254254 path : artifacts
255255
@@ -325,7 +325,7 @@ jobs:
325325
326326 - name : Generate changelog
327327 id : changelog
328- uses : actions/github-script@v7
328+ uses : actions/github-script@v9
329329 env :
330330 RELEASE_VERSION : ${{ needs.prepare.outputs.version }}
331331 RELEASE_CHANNEL : ${{ needs.prepare.outputs.channel }}
@@ -470,7 +470,7 @@ jobs:
470470 return changelog;
471471
472472 - name : Create Release
473- uses : softprops/action-gh-release@v2
473+ uses : softprops/action-gh-release@v3
474474 with :
475475 tag_name : v${{ needs.prepare.outputs.version }}
476476 name : ${{ needs.prepare.outputs.channel == 'release' && format('Release v{0}', needs.prepare.outputs.version) || format('Alpha v{0}', needs.prepare.outputs.version) }}
0 commit comments