Skip to content

Commit 83e603d

Browse files
authored
Merge branch 'master' into doc/fix_ble
2 parents 3d650f1 + df60991 commit 83e603d

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.github/workflows/docs_build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
PATH=/home/runner/.local/bin:$PATH pip3 install -r requirements.txt --prefer-binary
3939
PATH=/home/runner/.local/bin:$PATH SPHINXOPTS="-W" build-docs -l en
4040
- name: Archive Docs
41-
uses: actions/upload-artifact@v2
41+
uses: actions/upload-artifact@v4
4242
with:
4343
name: docs
4444
path: docs

.github/workflows/hil.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
run: |
5757
bash .github/scripts/tests_build.sh -c -t ${{matrix.chip}} -i ${{matrix.chunks}} -m ${{env.MAX_CHUNKS}}
5858
- name: Upload ${{matrix.chip}}-${{matrix.chunks}} artifacts
59-
uses: actions/upload-artifact@v3
59+
uses: actions/upload-artifact@v4
6060
with:
6161
name: ${{matrix.chip}}-${{matrix.chunks}}.artifacts
6262
path: |
@@ -81,7 +81,7 @@ jobs:
8181
uses: actions/checkout@v4
8282

8383
- name: Download ${{matrix.chip}}-${{matrix.chunks}} artifacts
84-
uses: actions/download-artifact@v3
84+
uses: actions/download-artifact@v4
8585
with:
8686
name: ${{matrix.chip}}-${{matrix.chunks}}.artifacts
8787
path: ~/.arduino/tests/
@@ -97,7 +97,7 @@ jobs:
9797
bash .github/scripts/tests_run.sh -c -t ${{matrix.chip}} -i ${{matrix.chunks}} -m ${{env.MAX_CHUNKS}} -e
9898
9999
- name: Upload test result artifacts
100-
uses: actions/upload-artifact@v3
100+
uses: actions/upload-artifact@v4
101101
if: always()
102102
with:
103103
name: test_results-${{matrix.chip}}-${{matrix.chunks}}
@@ -112,7 +112,7 @@ jobs:
112112
runs-on: ubuntu-latest
113113
steps:
114114
- name: Upload
115-
uses: actions/upload-artifact@v3
115+
uses: actions/upload-artifact@v4
116116
with:
117117
name: Event File
118118
path: ${{github.event_path}}

.github/workflows/lib.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ jobs:
7575
- --warnings="all"
7676
7777
- name: Upload artifact
78-
uses: actions/upload-artifact@v3
78+
uses: actions/upload-artifact@v4
7979
with:
80-
name: ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}
80+
name: ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}-${{ matrix.target }}
8181
path: ${{ env.SKETCHES_REPORTS_PATH }}
8282

8383
report-to-file:
@@ -98,9 +98,10 @@ jobs:
9898

9999
# This step is needed to get the size data produced by the compile jobs
100100
- name: Download sketches reports artifact
101-
uses: actions/download-artifact@v3
101+
uses: actions/download-artifact@v4
102102
with:
103-
name: ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}
103+
pattern: ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}-*
104+
merge-multiple: true
104105
path: ${{ env.SKETCHES_REPORTS_PATH }}
105106

106107
- name: Report results
@@ -129,7 +130,7 @@ jobs:
129130
runs-on: ubuntu-latest
130131
steps:
131132
- name: Upload
132-
uses: actions/upload-artifact@v2
133+
uses: actions/upload-artifact@v4
133134
with:
134135
name: Event File
135-
path: ${{github.event_path}}
136+
path: ${{github.event_path}}

0 commit comments

Comments
 (0)