From 2c7d6f68a864d540b497d40aba8c2402f1617596 Mon Sep 17 00:00:00 2001 From: Colin Clark Date: Wed, 24 May 2023 15:46:37 +0100 Subject: [PATCH] Update GitHub actions file - Run apt-get update - Use specific Ubuntu version number --- .github/workflows/check-build-actions.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check-build-actions.yml b/.github/workflows/check-build-actions.yml index 6fbece67..86d7d10a 100644 --- a/.github/workflows/check-build-actions.yml +++ b/.github/workflows/check-build-actions.yml @@ -3,8 +3,9 @@ run-name: ${{ github.actor }} is running Geeqie check build on: [push] jobs: Check-Build-No-Options: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: + - run: sudo apt-get update - run: sudo apt-get install build-essential libgtk-3-dev - uses: actions/checkout@v3 - uses: actions/setup-python@v4 -- 2.20.1