Use bio_new_file() wrapper instead of BIO_new_file() for consistent f… #419
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: Coverity Scan | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| coverity: | |
| runs-on: ubuntu-latest | |
| env: | |
| token: ${{secrets.COVERITY_SCAN_TOKEN}} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| if: env.token | |
| - name: Get ready for scanning | |
| if: env.token | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libssl-dev libcurl4-openssl-dev | |
| cmake -S ${{github.workspace}} -B ${{github.workspace}}/build | |
| - uses: vapier/coverity-scan-action@v1 | |
| if: env.token | |
| with: | |
| email: ${{secrets.COVERITY_SCAN_EMAIL}} | |
| token: ${{secrets.COVERITY_SCAN_TOKEN}} | |
| command: make -C ${{github.workspace}}/build |