From 2df4cce71ed1f1a516f0ed0babaf469435480466 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Cab=C3=A9?= Date: Mon, 22 Apr 2024 19:07:04 +0200 Subject: [PATCH] ci: github: bump tj-actions/changed-files version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump tj-actions/changed-files to v44. As of v42, input file patterns that end with a / now match all sub-files within the directory without requiring to specify the globstar pattern. Signed-off-by: Benjamin Cabé --- .github/workflows/bsim-tests.yaml | 38 +++++++++++++++---------------- .github/workflows/doc-build.yml | 10 ++++---- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/bsim-tests.yaml b/.github/workflows/bsim-tests.yaml index 0574134f83..52d384e92f 100644 --- a/.github/workflows/bsim-tests.yaml +++ b/.github/workflows/bsim-tests.yaml @@ -90,50 +90,50 @@ jobs: echo "ZEPHYR_SDK_INSTALL_DIR=/opt/toolchains/zephyr-sdk-$( cat SDK_VERSION )" >> $GITHUB_ENV - name: Check common triggering files - uses: tj-actions/changed-files@v41 + uses: tj-actions/changed-files@v44 id: check-common-files with: files: | .github/workflows/bsim-tests.yaml .github/workflows/bsim-tests-publish.yaml west.yml - boards/posix/** - soc/posix/** - arch/posix/** - include/zephyr/arch/posix/** - scripts/native_simulator/** + boards/posix/ + soc/posix/ + arch/posix/ + include/zephyr/arch/posix/ + scripts/native_simulator/ tests/bsim/* - name: Check if Bluethooth files changed - uses: tj-actions/changed-files@v41 + uses: tj-actions/changed-files@v44 id: check-bluetooth-files with: files: | - tests/bsim/bluetooth/** - samples/bluetooth/** - subsys/bluetooth/** + tests/bsim/bluetooth/ + samples/bluetooth/ + subsys/bluetooth/ - name: Check if Networking files changed - uses: tj-actions/changed-files@v41 + uses: tj-actions/changed-files@v44 id: check-networking-files with: files: | - tests/bsim/net/** - samples/net/sockets/echo_*/** - modules/openthread/** - subsys/net/l2/openthread/** + tests/bsim/net/ + samples/net/sockets/echo_*/ + modules/openthread/ + subsys/net/l2/openthread/ include/zephyr/net/openthread.h - drivers/ieee802154/** + drivers/ieee802154/ include/zephyr/net/ieee802154* - name: Check if UART files changed - uses: tj-actions/changed-files@v41 + uses: tj-actions/changed-files@v44 id: check-uart-files with: files: | - tests/bsim/drivers/uart/** + tests/bsim/drivers/uart/ drivers/serial/*nrfx* - tests/drivers/uart/** + tests/drivers/uart/ - name: Update BabbleSim to manifest revision if: > diff --git a/.github/workflows/doc-build.yml b/.github/workflows/doc-build.yml index b9faa99967..94f53f6b9d 100644 --- a/.github/workflows/doc-build.yml +++ b/.github/workflows/doc-build.yml @@ -34,20 +34,20 @@ jobs: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 - name: Check if Documentation related files changed - uses: tj-actions/changed-files@v42 + uses: tj-actions/changed-files@v44 id: check-doc-files with: files: | - doc/** + doc/ **.rst - include/** + include/ kernel/include/kernel_arch_interface.h lib/libc/** subsys/testsuite/ztest/include/** - tests/** + tests/ **/Kconfig* west.yml - scripts/dts/** + scripts/dts/ doc/requirements.txt .github/workflows/doc-build.yml