Bump github.com/smartcontractkit/chainlink-testing-framework/framework from 0.16.6-0.20260708113039-95f97b2d25e9 to 0.16.6 in /system-tests/tests #62412
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Bash Scripts | |
| on: | |
| pull_request: | |
| jobs: | |
| changes: | |
| name: detect changes | |
| runs-on: ubuntu-latest | |
| outputs: | |
| bash-scripts-src: ${{ steps.bash-scripts.outputs.src }} | |
| steps: | |
| - name: Checkout the repo | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1 | |
| id: bash-scripts | |
| with: | |
| filters: | | |
| src: | |
| - 'tools/bin/**' | |
| - '.github/workflows/bash-scripts.yml' | |
| shellcheck: | |
| name: ShellCheck Lint | |
| runs-on: ubuntu-latest | |
| needs: [changes] | |
| steps: | |
| - name: Checkout the repo | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Run ShellCheck | |
| if: needs.changes.outputs.bash-scripts-src == 'true' | |
| uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # 2.0.0 | |
| with: | |
| scandir: "./tools/bin" | |
| # Consider changing this to check for warnings once all warnings are fixed. | |
| severity: error |