Skip to content

Commit

Permalink
CI: Upgrade artifact actions
Browse files Browse the repository at this point in the history
v3 of actions/upload-artifact and
actions/download-artifact becomes obsolete.

Signed-off-by: Jakub Ciesla <[email protected]>
  • Loading branch information
jaci-nordic committed Nov 14, 2024
1 parent 509d5c5 commit 5aa51b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,13 @@ jobs:
-e KconfigBasicNoModules -c origin/${BASE_REF}..
- name: upload-results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
continue-on-error: true
if: contains(github.event.pull_request.user.login, 'dependabot[bot]') != true
with:
name: compliance.xml
path: ncs/nrf/compliance.xml
overwrite: true

- name: check-warns
working-directory: ncs/nrf
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/license-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,10 @@ jobs:
-c origin/${BASE_REF}..
- name: Upload results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
continue-on-error: true
if: always() && contains(github.event.pull_request.user.login, 'dependabot[bot]') != true
with:
name: licenses.xml
path: ncs/${{ inputs.path }}/licenses.xml
overwrite: true

0 comments on commit 5aa51b1

Please sign in to comment.