diff options
-rw-r--r-- | .github/workflows/codeql.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 2a34a9b3..dab6eec1 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -51,7 +51,9 @@ jobs: uses: actions/checkout@v4 - name: Install system dependencies - run: sudo apt install libjson-glib-dev zlib1g-dev libsoup2.4-dev libgtk-3-dev libglib2.0-dev gettext + run: | + sudo apt update + sudo apt install -y libjson-glib-dev zlib1g-dev libsoup2.4-dev libgtk-3-dev libglib2.0-dev gettext # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL |