mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 09:17:20 +00:00
1c282a9306
This sets the default permission for current CI workflows to only be able to read from the repository (scope: "contents"). When a used Github Action require additional permissions (like CodeQL) we grant that permission on job-level instead. This means that a compromised action will not be able to modify the repo or even steal secrets since all other permission-scopes are implicit set to "none", i.e. not permitted. This is recommended by [OpenSSF](https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions). This PR includes a small fix for the possibility of missing server logs artifacts, found while verifying the permission. The `upload-artifact@v3` action will replace artifacts which already exists. Since both CI-jobs `test-external-standalone` and `test-external-nodebug` uses the same artifact name, when both jobs fail, we only get logs from the last finished job. This can be avoided by using unique artifact names. This PR is part of #211 More about permissions and scope can be found here: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions --------- Signed-off-by: Björn Svensson <bjorn.a.svensson@est.tech>
34 lines
1.3 KiB
YAML
34 lines
1.3 KiB
YAML
# Creates and uploads a Coverity build on a schedule
|
|
name: Coverity Scan
|
|
on:
|
|
schedule:
|
|
# Run once daily, since below 500k LOC can have 21 builds per week, per https://scan.coverity.com/faq#frequency
|
|
- cron: '0 0 * * *'
|
|
# Support manual execution
|
|
workflow_dispatch:
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
coverity:
|
|
if: github.repository == 'valkey-io/valkey'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
- name: Download and extract the Coverity Build Tool
|
|
run: |
|
|
wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=${{ secrets.COVERITY_SCAN_TOKEN }}&project=valkey-io%2Fvalkey" -O cov-analysis-linux64.tar.gz
|
|
mkdir cov-analysis-linux64
|
|
tar xzf cov-analysis-linux64.tar.gz --strip 1 -C cov-analysis-linux64
|
|
- name: Install Valkey dependencies
|
|
run: sudo apt install -y gcc procps libssl-dev
|
|
- name: Build with cov-build
|
|
run: cov-analysis-linux64/bin/cov-build --dir cov-int make
|
|
- name: Upload the result
|
|
run: |
|
|
tar czvf cov-int.tgz cov-int
|
|
curl \
|
|
--form email=${{ secrets.COVERITY_SCAN_EMAIL }} \
|
|
--form token=${{ secrets.COVERITY_SCAN_TOKEN }} \
|
|
--form file=@cov-int.tgz \
|
|
https://scan.coverity.com/builds?project=valkey-io%2Fvalkey
|