File tree 3 files changed +12
-11
lines changed
3 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 38
38
PATH=/home/runner/.local/bin:$PATH pip3 install -r requirements.txt --prefer-binary
39
39
PATH=/home/runner/.local/bin:$PATH SPHINXOPTS="-W" build-docs -l en
40
40
- name : Archive Docs
41
- uses : actions/upload-artifact@v2
41
+ uses : actions/upload-artifact@v4
42
42
with :
43
43
name : docs
44
44
path : docs
Original file line number Diff line number Diff line change 56
56
run : |
57
57
bash .github/scripts/tests_build.sh -c -t ${{matrix.chip}} -i ${{matrix.chunks}} -m ${{env.MAX_CHUNKS}}
58
58
- name : Upload ${{matrix.chip}}-${{matrix.chunks}} artifacts
59
- uses : actions/upload-artifact@v3
59
+ uses : actions/upload-artifact@v4
60
60
with :
61
61
name : ${{matrix.chip}}-${{matrix.chunks}}.artifacts
62
62
path : |
81
81
uses : actions/checkout@v4
82
82
83
83
- name : Download ${{matrix.chip}}-${{matrix.chunks}} artifacts
84
- uses : actions/download-artifact@v3
84
+ uses : actions/download-artifact@v4
85
85
with :
86
86
name : ${{matrix.chip}}-${{matrix.chunks}}.artifacts
87
87
path : ~/.arduino/tests/
97
97
bash .github/scripts/tests_run.sh -c -t ${{matrix.chip}} -i ${{matrix.chunks}} -m ${{env.MAX_CHUNKS}} -e
98
98
99
99
- name : Upload test result artifacts
100
- uses : actions/upload-artifact@v3
100
+ uses : actions/upload-artifact@v4
101
101
if : always()
102
102
with :
103
103
name : test_results-${{matrix.chip}}-${{matrix.chunks}}
@@ -112,7 +112,7 @@ jobs:
112
112
runs-on : ubuntu-latest
113
113
steps :
114
114
- name : Upload
115
- uses : actions/upload-artifact@v3
115
+ uses : actions/upload-artifact@v4
116
116
with :
117
117
name : Event File
118
118
path : ${{github.event_path}}
Original file line number Diff line number Diff line change 75
75
- --warnings="all"
76
76
77
77
- name : Upload artifact
78
- uses : actions/upload-artifact@v3
78
+ uses : actions/upload-artifact@v4
79
79
with :
80
- name : ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}
80
+ name : ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}-${{ matrix.target }}
81
81
path : ${{ env.SKETCHES_REPORTS_PATH }}
82
82
83
83
report-to-file :
98
98
99
99
# This step is needed to get the size data produced by the compile jobs
100
100
- name : Download sketches reports artifact
101
- uses : actions/download-artifact@v3
101
+ uses : actions/download-artifact@v4
102
102
with :
103
- name : ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}
103
+ pattern : ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}-*
104
+ merge-multiple : true
104
105
path : ${{ env.SKETCHES_REPORTS_PATH }}
105
106
106
107
- name : Report results
@@ -129,7 +130,7 @@ jobs:
129
130
runs-on : ubuntu-latest
130
131
steps :
131
132
- name : Upload
132
- uses : actions/upload-artifact@v2
133
+ uses : actions/upload-artifact@v4
133
134
with :
134
135
name : Event File
135
- path : ${{github.event_path}}
136
+ path : ${{github.event_path}}
You can’t perform that action at this time.
0 commit comments