Skip to content

Commit f783fe7

Browse files
committed
CI: Upgrade artifact actions
v3 of actions/upload-artifact and actions/download-artifact becomes obsolete. Signed-off-by: Jakub Ciesla <[email protected]>
1 parent 38f72b8 commit f783fe7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/compliance.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,13 @@ jobs:
7373
-e KconfigBasicNoModules -c origin/${BASE_REF}..
7474
7575
- name: upload-results
76-
uses: actions/upload-artifact@v3
76+
uses: actions/upload-artifact@v4
7777
continue-on-error: true
7878
if: contains(github.event.pull_request.user.login, 'dependabot[bot]') != true
7979
with:
8080
name: compliance.xml
8181
path: ncs/nrf/compliance.xml
82+
overwrite: true
8283

8384
- name: check-warns
8485
working-directory: ncs/nrf

.github/workflows/license-reusable.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,10 @@ jobs:
104104
-c origin/${BASE_REF}..
105105
106106
- name: Upload results
107-
uses: actions/upload-artifact@v3
107+
uses: actions/upload-artifact@v4
108108
continue-on-error: true
109109
if: always() && contains(github.event.pull_request.user.login, 'dependabot[bot]') != true
110110
with:
111111
name: licenses.xml
112112
path: ncs/${{ inputs.path }}/licenses.xml
113+
overwrite: true

0 commit comments

Comments
 (0)