@@ -29,12 +29,12 @@ jobs:
29
29
mode : profile
30
30
31
31
steps :
32
- - uses : actions/checkout@v3
32
+ - uses : actions/checkout@v4
33
33
with :
34
34
path : src/flutter
35
35
fetch-depth : 0
36
36
37
- - uses : actions/cache@v3
37
+ - uses : actions/cache@v4
38
38
with :
39
39
path : /tizen_tools/sysroot
40
40
key : sysroot
@@ -76,22 +76,22 @@ jobs:
76
76
if : ${{ matrix.mode != 'debug' }}
77
77
run : ninja -C src/out/build clang_x64/gen_snapshot
78
78
79
- - uses : actions/upload-artifact@v3
79
+ - uses : actions/upload-artifact@v4
80
80
with :
81
81
name : tizen-${{ matrix.arch }}-${{ matrix.mode }}
82
82
path : |
83
83
src/out/build/libflutter_engine.so
84
84
src/out/build/icudtl.dat
85
85
if-no-files-found : error
86
86
87
- - uses : actions/upload-artifact@v3
87
+ - uses : actions/upload-artifact@v4
88
88
if : ${{ github.event_name == 'push' }}
89
89
with :
90
90
name : tizen-${{ matrix.arch }}-${{ matrix.mode }}_symbols
91
91
path : src/out/build/so.unstripped/libflutter_engine.so
92
92
if-no-files-found : error
93
93
94
- - uses : actions/upload-artifact@v3
94
+ - uses : actions/upload-artifact@v4
95
95
if : ${{ matrix.mode != 'debug' }}
96
96
with :
97
97
name : tizen-${{ matrix.arch }}-${{ matrix.mode }}_linux-x64
@@ -149,7 +149,7 @@ jobs:
149
149
--target-dir build
150
150
ninja -C .\out\build gen_snapshot
151
151
152
- - uses : actions/upload-artifact@v3
152
+ - uses : actions/upload-artifact@v4
153
153
with :
154
154
name : tizen-${{ matrix.arch }}-${{ matrix.mode }}_windows-x64
155
155
path : C:\workspace\engine\src\out\build\gen_snapshot.exe
@@ -164,12 +164,12 @@ jobs:
164
164
mode : [release, profile]
165
165
166
166
steps :
167
- - uses : actions/checkout@v3
167
+ - uses : actions/checkout@v4
168
168
with :
169
169
path : src/flutter
170
170
fetch-depth : 0
171
171
172
- - uses : actions/setup-python@v4
172
+ - uses : actions/setup-python@v5
173
173
with :
174
174
python-version : ' 3.11'
175
175
@@ -202,7 +202,7 @@ jobs:
202
202
--target-dir build
203
203
ninja -C src/out/build clang_x64/gen_snapshot
204
204
205
- - uses : actions/upload-artifact@v3
205
+ - uses : actions/upload-artifact@v4
206
206
with :
207
207
name : tizen-${{ matrix.arch }}-${{ matrix.mode }}_darwin-x64
208
208
path : src/out/build/clang_x64/gen_snapshot
@@ -214,9 +214,9 @@ jobs:
214
214
runs-on : ubuntu-latest
215
215
216
216
steps :
217
- - uses : actions/checkout@v3
217
+ - uses : actions/checkout@v4
218
218
219
- - uses : actions/download-artifact@v3
219
+ - uses : actions/download-artifact@v4
220
220
221
221
- name : Create archives
222
222
run : |
@@ -229,7 +229,7 @@ jobs:
229
229
echo "SHORT_SHA=$(git rev-parse --short $GITHUB_SHA)" >> $GITHUB_ENV
230
230
echo "VERSION=$(echo "${{ github.ref_name }}" | cut -d'-' -f2)" >> $GITHUB_ENV
231
231
232
- - uses : softprops/action-gh-release@v1
232
+ - uses : softprops/action-gh-release@v2
233
233
with :
234
234
name : ${{ env.VERSION }} (${{ env.SHORT_SHA }})
235
235
tag_name : ${{ env.SHORT_SHA }}
0 commit comments