From 4abc525801e62f3ab908d00217da5291dee50ae1 Mon Sep 17 00:00:00 2001 From: Asher Date: Thu, 28 Oct 2021 17:36:21 -0500 Subject: [PATCH] Update cross-build image apt before installing (#4411) --- .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 6ba0793f..80430c8b 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) }}