Update GitHub actions file
authorColin Clark <colin.clark@cclark.uk>
Wed, 24 May 2023 14:46:37 +0000 (15:46 +0100)
committerColin Clark <colin.clark@cclark.uk>
Wed, 24 May 2023 14:46:37 +0000 (15:46 +0100)
- Run apt-get update
- Use specific Ubuntu version number

.github/workflows/check-build-actions.yml

index 6fbece6..86d7d10 100644 (file)
@@ -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