17
17
commit_hash : ${{ steps.commit.outputs.commit_hash }}
18
18
steps :
19
19
- name : Checkout
20
- uses : actions/checkout@v2
20
+ uses : actions/checkout@v4
21
21
- name : Update project and export versions
22
22
run : |
23
23
sed -i "s/config\/version=.*/config\/version=\"v${{ github.event.inputs.tag }}\"/g" project.godot
@@ -42,21 +42,21 @@ jobs:
42
42
needs : [update_version, build]
43
43
steps :
44
44
- name : Checkout
45
- uses : actions/checkout@v2
45
+ uses : actions/checkout@v4
46
46
with :
47
47
ref : ${{ needs.update_version.outputs.commit_hash }}
48
48
- name : Download Windows Build
49
- uses : actions/download-artifact@v2
49
+ uses : actions/download-artifact@v4
50
50
with :
51
51
name : FlappyRace-windows-${{ needs.update_version.outputs.commit_hash }}
52
52
path : builds/FlappyRace-${{ github.event.inputs.tag }}-Windows
53
53
- name : Download Mac Build
54
- uses : actions/download-artifact@v2
54
+ uses : actions/download-artifact@v4
55
55
with :
56
56
name : FlappyRace-mac-${{ needs.update_version.outputs.commit_hash }}
57
57
path : builds/FlappyRace-${{ github.event.inputs.tag }}-Mac
58
58
- name : Download Linux Build
59
- uses : actions/download-artifact@v2
59
+ uses : actions/download-artifact@v4
60
60
with :
61
61
name : FlappyRace-linux-${{ needs.update_version.outputs.commit_hash }}
62
62
path : builds/FlappyRace-${{ github.event.inputs.tag }}-Linux
82
82
uses : ffurrer2/extract-release-notes@v1
83
83
id : extract-release-notes
84
84
- name : Draft GitHub Release
85
- uses : softprops/action-gh-release@v1
85
+ uses : softprops/action-gh-release@v2
86
86
with :
87
87
tag_name : ${{ github.events.inputs.tag }}
88
88
name : Flappy Race v${{ github.event.inputs.tag }}
0 commit comments