Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-using-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
IMAGE_TAG: ${{ steps.set-output.outputs.IMAGE_TAG }}
steps:
- name: Checkout repository with example application
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
path: example-application

Expand All @@ -36,7 +36,7 @@ jobs:
shell: bash
steps:
- name: Checkout repository with example application
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
path: example-application

Expand All @@ -51,7 +51,7 @@ jobs:
west twister -T app -v --inline-logs --integration

- name: Store hex files
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: built-applications
path: example-application/twister-out/**/zephyr/zephyr.hex
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-using-toolchain-bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository with example application
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
path: example-application

Expand All @@ -31,7 +31,7 @@ jobs:

- name: Restore toolchain bundle from cache
id: restore-cached-tb
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
with:
path: ${{steps.set-tb-id.outputs.TOOLCHAIN_BUNDLE_NAME}}
key: ${{steps.set-tb-id.outputs.TOOLCHAIN_BUNDLE_NAME}}
Expand All @@ -42,7 +42,7 @@ jobs:

- name: Save toolchain bundle to cache
if: steps.restore-cached-tb.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
uses: actions/cache/save@v6
with:
path: ${{steps.set-tb-id.outputs.TOOLCHAIN_BUNDLE_NAME}}
key: ${{steps.set-tb-id.outputs.TOOLCHAIN_BUNDLE_NAME}}
Expand All @@ -55,7 +55,7 @@ jobs:
./nrfutil toolchain-manager launch --chdir example-application -- west twister -T app -v --inline-logs --integration

- name: Store hex files
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: built-applications
path: example-application/twister-out/**/zephyr/zephyr.hex