diff --git a/.github/workflows/bsim-tests.yaml b/.github/workflows/bsim-tests.yaml index 271cc1dbfe7..a8ee8b42857 100644 --- a/.github/workflows/bsim-tests.yaml +++ b/.github/workflows/bsim-tests.yaml @@ -132,10 +132,10 @@ jobs: - name: Update BabbleSim to manifest revision if: > - steps.check-bluetooth-files.outputs.any_changed == 'true' - || steps.check-networking-files.outputs.any_changed == 'true' - || steps.check-uart-files.outputs.any_changed == 'true' - || steps.check-common-files.outputs.any_changed == 'true' + steps.check-bluetooth-files.outputs.any_modified == 'true' + || steps.check-networking-files.outputs.any_modified == 'true' + || steps.check-uart-files.outputs.any_modified == 'true' + || steps.check-common-files.outputs.any_modified == 'true' run: | export BSIM_VERSION=$( west list bsim -f {revision} ) echo "Manifest points to bsim sha $BSIM_VERSION" @@ -146,17 +146,17 @@ jobs: make everything -s -j 8 - name: Run Bluetooth Tests with BSIM - if: steps.check-bluetooth-files.outputs.any_changed == 'true' || steps.check-common-files.outputs.any_changed == 'true' + if: steps.check-bluetooth-files.outputs.any_modified == 'true' || steps.check-common-files.outputs.any_modified == 'true' run: | tests/bsim/ci.bt.sh - name: Run Networking Tests with BSIM - if: steps.check-networking-files.outputs.any_changed == 'true' || steps.check-common-files.outputs.any_changed == 'true' + if: steps.check-networking-files.outputs.any_modified == 'true' || steps.check-common-files.outputs.any_modified == 'true' run: | tests/bsim/ci.net.sh - name: Run UART Tests with BSIM - if: steps.check-uart-files.outputs.any_changed == 'true' || steps.check-common-files.outputs.any_changed == 'true' + if: steps.check-uart-files.outputs.any_modified == 'true' || steps.check-common-files.outputs.any_modified == 'true' run: | tests/bsim/ci.uart.sh