From cca82e5ab16de4fc14e8d6589bfddca9c4fbf7f8 Mon Sep 17 00:00:00 2001 From: Darin Date: Fri, 20 Jan 2023 21:38:55 -0500 Subject: [PATCH] Add apt-get update to github actions Should fix issue where symlink checks and such are unable to find new packages. --- .github/workflows/pull-request.yml | 1 + .github/workflows/symlinks-check.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 90a34f53e..0c460eb9f 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -16,6 +16,7 @@ jobs: - name: Check symlinks and build theme shell: bash run: | + sudo apt-get update sudo apt install -y libgtk-3-dev optipng --no-install-recommends ./configure make test diff --git a/.github/workflows/symlinks-check.yml b/.github/workflows/symlinks-check.yml index 63bc09dd2..50bd03a00 100644 --- a/.github/workflows/symlinks-check.yml +++ b/.github/workflows/symlinks-check.yml @@ -17,6 +17,7 @@ jobs: - name: Check symlinks shell: bash run: | + sudo apt-get update sudo apt install -y libgtk-3-dev --no-install-recommends ./configure make test