Update the APT package database

This commit is contained in:
Michał Trojnara 2023-01-10 17:56:48 +01:00
parent 257cb1fb08
commit 07a927f34a
2 changed files with 4 additions and 1 deletions

View File

@ -92,7 +92,9 @@ jobs:
- name: Install apt dependencies (Linux)
if: runner.os == 'Linux'
run: sudo apt-get install -y libssl-dev libcurl4-openssl-dev faketime
run: |
sudo apt-get update
sudo apt-get install -y libssl-dev libcurl4-openssl-dev faketime
- name: Setup the oldest supported version of cmake (macOS)
if: runner.os == 'macOS'

View File

@ -15,6 +15,7 @@ jobs:
- 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