diff options
| author | seth <[email protected]> | 2023-10-21 18:11:34 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-10-21 18:11:34 -0400 |
| commit | ca59ebcf3dd17153b90a0ceca86af14db941ac3c (patch) | |
| tree | 35d8a673c79bfa1dd5e1e2e5dda57420992f8a0b /.github | |
| parent | 8e23456caf2c025a078604f8d5780d271f27b6a3 (diff) | |
actions: update apt before installing qemu
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yaml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fd765fe..e8b9375 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,7 +26,9 @@ jobs: - name: setup qemu if: matrix.arch == 'aarch64' - run: sudo apt install -y qemu-user-static + run: | + sudo apt update -y + sudo apt install -y qemu-user-static - name: install nix if: matrix.arch != 'aarch64' |
