From 067986b54987045e934c4aa493876f069bc7a7a0 Mon Sep 17 00:00:00 2001 From: Asher Date: Thu, 28 Oct 2021 21:31:40 +0000 Subject: [PATCH] Update cross-build image apt before installing --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6ba0793fb580..80430c8bbde7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -286,7 +286,7 @@ jobs: echo "$HOME/.local/bin" >> $GITHUB_PATH - name: Install cross-compiler - run: sudo apt install $PACKAGE + run: sudo apt update && sudo apt install $PACKAGE env: PACKAGE: ${{ format('g++-{0}', matrix.prefix) }}