From 612977a37ea3a77242eb1f3a950d5b3a98b83260 Mon Sep 17 00:00:00 2001 From: Guy Sheffer Date: Sun, 22 Oct 2023 21:45:47 +0300 Subject: [PATCH] run sudo apt-get update before installing a package. Taken from https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/customizing-github-hosted-runners --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f2c8ad9..1287574 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,6 +6,8 @@ jobs: build: runs-on: ubuntu-latest steps: + - name: Update apt + run: sudo apt-get update - name: Install Dependencies run: sudo apt install coreutils p7zip-full qemu-user-static - name: Checkout CustomPiOS