Skip to content

Commit ff5ee88

Browse files
committed
ci: Use actions/upload-artifact@v3
This commit updates the CI workflows to use the latest "upload-artifact" action v3, which is based on Node.js 16. Note that Node.js 12-based actions are now deprecated by GitHub and may stop working in the near future. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent c3ef958 commit ff5ee88

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/bluetooth-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
5252
- name: Upload Test Results
5353
if: always()
54-
uses: actions/upload-artifact@v2
54+
uses: actions/upload-artifact@v3
5555
with:
5656
name: bluetooth-test-results
5757
path: |
@@ -60,7 +60,7 @@ jobs:
6060
6161
- name: Upload Event Details
6262
if: always()
63-
uses: actions/upload-artifact@v2
63+
uses: actions/upload-artifact@v3
6464
with:
6565
name: event
6666
path: |

.github/workflows/clang.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
111111
- name: Upload Unit Test Results
112112
if: always() && steps.twister.outputs.report_needed != 0
113-
uses: actions/upload-artifact@v2
113+
uses: actions/upload-artifact@v3
114114
with:
115115
name: Unit Test Results (Subset ${{ matrix.platform }})
116116
path: twister-out/twister.xml

.github/workflows/codecov.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
8989
- name: Upload Coverage Results
9090
if: always()
91-
uses: actions/upload-artifact@v2
91+
uses: actions/upload-artifact@v3
9292
with:
9393
name: Coverage Data (Subset ${{ matrix.platform }})
9494
path: coverage/reports/${{ matrix.platform }}.info

.github/workflows/doc-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
echo "::notice:: Documentation will be available shortly at: ${DOC_URL}"
104104
105105
- name: upload-pr-number
106-
uses: actions/upload-artifact@v2
106+
uses: actions/upload-artifact@v3
107107
if: github.event_name == 'pull_request'
108108
with:
109109
name: pr_num

.github/workflows/license_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
directory-to-scan: 'scan/'
1717
- name: Artifact Upload
18-
uses: actions/upload-artifact@v1
18+
uses: actions/upload-artifact@v3
1919
with:
2020
name: scancode
2121
path: ./artifacts

.github/workflows/twister.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ jobs:
218218
219219
- name: Upload Unit Test Results
220220
if: always()
221-
uses: actions/upload-artifact@v2
221+
uses: actions/upload-artifact@v3
222222
with:
223223
name: Unit Test Results (Subset ${{ matrix.subset }})
224224
if-no-files-found: ignore

0 commit comments

Comments
 (0)