ci: github: bump tj-actions/changed-files version
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é <benjamin@zephyrproject.org>
This commit is contained in:
parent
c00ecd33f1
commit
2df4cce71e
38
.github/workflows/bsim-tests.yaml
vendored
38
.github/workflows/bsim-tests.yaml
vendored
|
@ -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: >
|
||||
|
|
10
.github/workflows/doc-build.yml
vendored
10
.github/workflows/doc-build.yml
vendored
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue