fix: cfengine-build-host-setup.cf needs to specify openssl version 3.1.4 so that suse-15 can load libopenssl-devel which is stuck at the older version 3.1.4 instead of current 3.2.3 #396
Workflow file for this run
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: Lint with shellcheck | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: sudo apt install shellcheck | |
| - name: Lint sources with shellcheck | |
| run: | | |
| ./ci/lint.sh |