Skip to content

Commit f2240c3

Browse files
ci: github: bump the actions-deps group with 3 updates
Bumps the actions-deps group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 4 to 7 - [Commits](actions/checkout@v4...v7) Updates `actions/upload-artifact` from 4 to 7 - [Commits](actions/upload-artifact@v4...v7) Updates `actions/cache` from 4 to 6 - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 68abb31 commit f2240c3

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build-using-docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
IMAGE_TAG: ${{ steps.set-output.outputs.IMAGE_TAG }}
1212
steps:
1313
- name: Checkout repository with example application
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v7
1515
with:
1616
path: example-application
1717

@@ -36,7 +36,7 @@ jobs:
3636
shell: bash
3737
steps:
3838
- name: Checkout repository with example application
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v7
4040
with:
4141
path: example-application
4242

@@ -51,7 +51,7 @@ jobs:
5151
west twister -T app -v --inline-logs --integration
5252
5353
- name: Store hex files
54-
uses: actions/upload-artifact@v4
54+
uses: actions/upload-artifact@v7
5555
with:
5656
name: built-applications
5757
path: example-application/twister-out/**/zephyr/zephyr.hex

.github/workflows/build-using-toolchain-bundle.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-24.04
1010
steps:
1111
- name: Checkout repository with example application
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v7
1313
with:
1414
path: example-application
1515

@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Restore toolchain bundle from cache
3333
id: restore-cached-tb
34-
uses: actions/cache/restore@v4
34+
uses: actions/cache/restore@v6
3535
with:
3636
path: ${{steps.set-tb-id.outputs.TOOLCHAIN_BUNDLE_NAME}}
3737
key: ${{steps.set-tb-id.outputs.TOOLCHAIN_BUNDLE_NAME}}
@@ -42,7 +42,7 @@ jobs:
4242

4343
- name: Save toolchain bundle to cache
4444
if: steps.restore-cached-tb.outputs.cache-hit != 'true'
45-
uses: actions/cache/save@v4
45+
uses: actions/cache/save@v6
4646
with:
4747
path: ${{steps.set-tb-id.outputs.TOOLCHAIN_BUNDLE_NAME}}
4848
key: ${{steps.set-tb-id.outputs.TOOLCHAIN_BUNDLE_NAME}}
@@ -55,7 +55,7 @@ jobs:
5555
./nrfutil toolchain-manager launch --chdir example-application -- west twister -T app -v --inline-logs --integration
5656
5757
- name: Store hex files
58-
uses: actions/upload-artifact@v4
58+
uses: actions/upload-artifact@v7
5959
with:
6060
name: built-applications
6161
path: example-application/twister-out/**/zephyr/zephyr.hex

0 commit comments

Comments
 (0)