File tree Expand file tree Collapse file tree 9 files changed +15
-15
lines changed Expand file tree Collapse file tree 9 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 51
51
52
52
- name : Upload Test Results
53
53
if : always()
54
- uses : actions/upload-artifact@v3
54
+ uses : actions/upload-artifact@v4
55
55
with :
56
56
name : bluetooth-test-results
57
57
path : |
60
60
61
61
- name : Upload Event Details
62
62
if : always()
63
- uses : actions/upload-artifact@v3
63
+ uses : actions/upload-artifact@v4
64
64
with :
65
65
name : event
66
66
path : |
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ jobs:
111
111
112
112
- name : Upload Unit Test Results
113
113
if : always() && steps.twister.outputs.report_needed != 0
114
- uses : actions/upload-artifact@v3
114
+ uses : actions/upload-artifact@v4
115
115
with :
116
116
name : Unit Test Results (Subset ${{ matrix.platform }})
117
117
path : twister-out/twister.xml
@@ -123,7 +123,7 @@ jobs:
123
123
if : (success() || failure() ) && needs.clang-build.outputs.report_needed != 0
124
124
steps :
125
125
- name : Download Artifacts
126
- uses : actions/download-artifact@v2
126
+ uses : actions/download-artifact@v4
127
127
with :
128
128
path : artifacts
129
129
Original file line number Diff line number Diff line change 95
95
96
96
- name : Upload Coverage Results
97
97
if : always()
98
- uses : actions/upload-artifact@v3
98
+ uses : actions/upload-artifact@v4
99
99
with :
100
100
name : Coverage Data (Subset ${{ matrix.platform }})
101
101
path : coverage/reports/${{ matrix.platform }}.info
@@ -113,7 +113,7 @@ jobs:
113
113
with :
114
114
fetch-depth : 0
115
115
- name : Download Artifacts
116
- uses : actions/download-artifact@v2
116
+ uses : actions/download-artifact@v4
117
117
with :
118
118
path : coverage/reports
119
119
Original file line number Diff line number Diff line change 72
72
./scripts/ci/check_compliance.py -m Codeowners -m Devicetree -m Gitlint -m Identity -m Nits -m pylint -m checkpatch -m Kconfig -c origin/${BASE_REF}..
73
73
74
74
- name : upload-results
75
- uses : actions/upload-artifact@v3
75
+ uses : actions/upload-artifact@v4
76
76
continue-on-error : True
77
77
with :
78
78
name : compliance.xml
Original file line number Diff line number Diff line change 87
87
tar cfJ html-output.tar.xz --directory=doc/_build html
88
88
89
89
- name : upload-build
90
- uses : actions/upload-artifact@v3
90
+ uses : actions/upload-artifact@v4
91
91
with :
92
92
name : html-output
93
93
path : html-output.tar.xz
@@ -103,7 +103,7 @@ jobs:
103
103
echo "::notice:: Documentation will be available shortly at: ${DOC_URL}"
104
104
105
105
- name : upload-pr-number
106
- uses : actions/upload-artifact@v3
106
+ uses : actions/upload-artifact@v4
107
107
if : github.event_name == 'pull_request'
108
108
with :
109
109
name : pr_num
@@ -161,7 +161,7 @@ jobs:
161
161
DOC_TAG=${DOC_TAG} SPHINXOPTS="-q -j auto" LATEXMKOPTS="-quiet -halt-on-error" make -C doc pdf
162
162
163
163
- name : upload-build
164
- uses : actions/upload-artifact@v3
164
+ uses : actions/upload-artifact@v4
165
165
with :
166
166
name : pdf-output
167
167
path : doc/_build/latex/zephyr.pdf
Original file line number Diff line number Diff line change 34
34
token : ${{ secrets.GITHUB_TOKEN }}
35
35
36
36
- name : upload-stats
37
- uses : actions/upload-artifact@v3
37
+ uses : actions/upload-artifact@v4
38
38
continue-on-error : True
39
39
with :
40
40
name : ${{ env.OUTPUT_FILE_NAME }}
Original file line number Diff line number Diff line change 15
15
with :
16
16
directory-to-scan : ' scan/'
17
17
- name : Artifact Upload
18
- uses : actions/upload-artifact@v3
18
+ uses : actions/upload-artifact@v4
19
19
with :
20
20
name : scancode
21
21
path : ./artifacts
Original file line number Diff line number Diff line change 24
24
args : spdx -o zephyr-${{ steps.get_version.outputs.VERSION }}.spdx
25
25
26
26
- name : upload-results
27
- uses : actions/upload-artifact@v3
27
+ uses : actions/upload-artifact@v4
28
28
continue-on-error : True
29
29
with :
30
30
name : zephyr-${{ steps.get_version.outputs.VERSION }}.spdx
Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ jobs:
219
219
220
220
- name : Upload Unit Test Results
221
221
if : always()
222
- uses : actions/upload-artifact@v3
222
+ uses : actions/upload-artifact@v4
223
223
with :
224
224
name : Unit Test Results (Subset ${{ matrix.subset }})
225
225
if-no-files-found : ignore
@@ -236,7 +236,7 @@ jobs:
236
236
237
237
steps :
238
238
- name : Download Artifacts
239
- uses : actions/download-artifact@v2
239
+ uses : actions/download-artifact@v4
240
240
with :
241
241
path : artifacts
242
242
You can’t perform that action at this time.
0 commit comments