[cherry-pick v20260413] fix(security): bump Go to 1.25.10 and golang.org/x/net to v0.55.0 #17351
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: Shell/Bash Script Unit Tests | |
| on: pull_request | |
| jobs: | |
| shellspec: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.25' | |
| - run: | | |
| make shellspec-ci | |
| name: Run shell/bash script unit tests with shellspec | |
| - run: echo "Shell/Bash script unit tests failed. Please check the logs for details. To run the shellspec unit tests locally, please refer to ./spec/README.md" | |
| if: failure() | |
| name: Print failure message | |
| - run: echo "Shell/Bash script unit tests completed successfully!" | |
| name: Print completion message |