aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhwspeedy <ns@bigbear.dk>2024-02-19 23:40:05 +0100
committerGitHub <noreply@github.com>2024-02-19 23:40:05 +0100
commite63da9361b0098d23624a4b7077cfc233c1df700 (patch)
tree8f64b98fd431aeb0fbfb47a01b11a3860b5fada2
parent8822e2faaf5c01c159a400e8338de1c54fc01de6 (diff)
FIX CodeQL add missing apt update
-rw-r--r--.github/workflows/codeql.yml4
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