2626
2727 # Steps represent a sequence of tasks that will be executed as part of the job
2828 steps :
29- - uses : actions/checkout@v2
29+ - uses : actions/checkout@v6
3030 - name : Get the version
3131 id : get_version
3232 run : |
3939
4040 - name : Version Check
4141 if : ${{ env.TAG_VERSION != env.FILE_VERSION && startsWith(github.ref, 'refs/tags/v')}}
42- uses : actions/github-script@v3
42+ uses : actions/github-script@v8
4343 with :
4444 script : |
4545 const { TAG_VERSION, FILE_VERSION } = process.env
@@ -64,26 +64,26 @@ jobs:
6464 # Path to dependencies rockspec relative to GitHub workspace
6565
6666 # Upload the built applications
67- - uses : actions/upload-artifact@v2
67+ - uses : actions/upload-artifact@v7
6868 with :
6969 name : space-love_macos-build
7070 path : ${{ steps.love-build.outputs.macos-filename }}
71- - uses : actions/upload-artifact@v2
71+ - uses : actions/upload-artifact@v7
7272 with :
7373 name : space-love_win32-build
7474 path : ${{ steps.love-build.outputs.win32-filename }}
75- - uses : actions/upload-artifact@v2
75+ - uses : actions/upload-artifact@v7
7676 with :
7777 name : space-love_win64-build
7878 path : ${{ steps.love-build.outputs.win64-filename }}
79- - uses : actions/upload-artifact@v2
79+ - uses : actions/upload-artifact@v7
8080 with :
8181 name : space-love_love-build
8282 path : ${{ steps.love-build.outputs.love-filename }}
8383
8484 # If a tag was pushed, create a release
8585 - name : Release
86- uses : softprops/action-gh-release@v1
86+ uses : softprops/action-gh-release@v2
8787 if : startsWith(github.ref, 'refs/tags/v')
8888 with :
8989 files : |
0 commit comments