31
31
vtag : ${{ steps.vtag.outputs.vtag }}
32
32
steps :
33
33
- name : Checkout repository
34
- uses : actions/checkout@v3
34
+ uses : actions/checkout@v4
35
35
with :
36
36
fetch-depth : 0
37
37
ref : ${{ github.event.inputs.branch }}
43
43
echo "vtag=${VTAG}" >> $GITHUB_ENV
44
44
echo "vtag=${VTAG}" >> $GITHUB_OUTPUT
45
45
- name : Validate version
46
- uses : actions/github-script@v6
46
+ uses : actions/github-script@v7
47
47
env :
48
48
vtag : ${{ env.vtag }}
49
49
with :
70
70
USE_CCACHE : 1
71
71
steps :
72
72
- name : Checkout repository
73
- uses : actions/checkout@v3
73
+ uses : actions/checkout@v4
74
74
with :
75
75
fetch-depth : 0
76
76
ref : ${{ github.event.inputs.branch }}
90
90
DEVELOPER_DIR : /Applications/Xcode_14.3.app/Contents/Developer
91
91
steps :
92
92
- name : Checkout repository
93
- uses : actions/checkout@v3
93
+ uses : actions/checkout@v4
94
94
with :
95
95
fetch-depth : 0
96
96
ref : ${{ github.event.inputs.branch }}
@@ -109,7 +109,7 @@ jobs:
109
109
needs : [validate, android, ios]
110
110
steps :
111
111
- name : Checkout repository
112
- uses : actions/checkout@v3
112
+ uses : actions/checkout@v4
113
113
with :
114
114
fetch-depth : 0
115
115
ref : ${{ github.event.inputs.branch }}
@@ -129,21 +129,21 @@ jobs:
129
129
vtag : ${{ needs.validate.outputs.vtag }}
130
130
steps :
131
131
- name : Checkout repository
132
- uses : actions/checkout@v3
132
+ uses : actions/checkout@v4
133
133
with :
134
134
fetch-depth : 0
135
135
ref : ${{ github.event.inputs.branch }}
136
136
- run : echo ${{ env.vtag }}
137
137
- name : Download Linux artifact
138
- uses : actions/download-artifact@v3
138
+ uses : actions/download-artifact@v4
139
139
with :
140
140
name : mobilesdk-${{ env.vtag }}-linux
141
141
- name : Download MacOS artifact
142
- uses : actions/download-artifact@v3
142
+ uses : actions/download-artifact@v4
143
143
with :
144
144
name : mobilesdk-${{ env.vtag }}-osx
145
145
- name : Download Windows artifact
146
- uses : actions/download-artifact@v3
146
+ uses : actions/download-artifact@v4
147
147
with :
148
148
name : mobilesdk-${{ env.vtag }}-win32
149
149
- name : Create and push tag
@@ -155,14 +155,14 @@ jobs:
155
155
git push origin "${TAG_VERSION}"
156
156
echo "clean-tag=${TAG_VERSION}" >> $GITHUB_ENV
157
157
- name : Upload SDK zips (GA)
158
- uses : softprops/action-gh-release@v1
158
+ uses : softprops/action-gh-release@v2
159
159
if : ${{ github.event.inputs.release-type == 'GA' }}
160
160
with :
161
161
files : mobilesdk-${{ env.vtag }}-*
162
162
tag_name : ${{ env.clean-tag }}
163
163
name : ${{ env.vtag }}
164
164
- name : Upload SDK zips (non-GA)
165
- uses : softprops/action-gh-release@v1
165
+ uses : softprops/action-gh-release@v2
166
166
if : ${{ github.event.inputs.release-type != 'GA' }}
167
167
with :
168
168
files : mobilesdk-${{ env.vtag }}-*
@@ -178,7 +178,7 @@ jobs:
178
178
git commit -m "chore(release): bump version"
179
179
git push
180
180
- name : Regen Builds
181
- uses : peter-evans/repository-dispatch@v2
181
+ uses : peter-evans/repository-dispatch@v3
182
182
with :
183
183
event-type : regen-builds
184
184
repository : tidev/downloads-www
0 commit comments