From 8640a0e55ba35df0dd6d447a77e71c16e36a3905 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 3 May 2026 12:08:14 +0000 Subject: [PATCH] chore(deps)(deps): bump the all-actions group with 3 updates Bumps the all-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [softprops/action-gh-release](https://github.com/softprops/action-gh-release). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `softprops/action-gh-release` from 2 to 3 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e454800..26f85a7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: name: host tests (no IDF) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: make -C tests/host test host-example: @@ -21,7 +21,7 @@ jobs: container: image: espressif/idf:release-v6.0 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: idf.py build (esp32p4) working-directory: examples/host_p4_demo run: | @@ -58,7 +58,7 @@ jobs: 0xd000 build/ota_data_initial.bin 0x10000 build/network_adapter.bin steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: idf.py set-target ${{ matrix.chip }} working-directory: slave run: | @@ -80,13 +80,13 @@ jobs: --flash-mode dio --flash-size 4MB --flash-freq 80m \ ${{ matrix.merge_args }} shasum -a 256 build/${{ matrix.short }}_slave_merged.bin - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: ${{ matrix.short }}_slave_merged path: slave/build/${{ matrix.short }}_slave_merged.bin retention-days: 90 - name: attach to release (tags only) if: github.event_name == 'release' - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: files: slave/build/${{ matrix.short }}_slave_merged.bin