From 962d3ed0de779bc5be11644ca729dc91cb0b57de Mon Sep 17 00:00:00 2001 From: Jacob Carlborg Date: Fri, 5 Aug 2022 20:48:14 +0200 Subject: [PATCH] Bump Ubuntu version used for CI --- .github/workflows/build.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2c2881f..ed29d57 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: build: name: Build runs-on: ubuntu-latest - container: ubuntu:21.04 + container: ubuntu:22.10 strategy: fail-fast: false matrix: @@ -48,9 +48,10 @@ jobs: - name: Install UEFI if: matrix.architecture == 'x86-64' - uses: docker://ubuntu:22.10 - with: - args: bash -c "apt update && apt install ovmf && cp /usr/share/ovmf/OVMF.fd resources/ovmf.fd" + run: | + bash -c "apt update + apt install ovmf + cp /usr/share/ovmf/OVMF.fd resources/ovmf.fd" - name: Download QEMU UEFI if: matrix.architecture == 'arm64'