From e04c1eaa51e20c84125033a5e67d99dee5acbeab Mon Sep 17 00:00:00 2001 From: Florent Delannoy Date: Thu, 20 Feb 2025 09:50:40 +0100 Subject: [PATCH] Remove dependency install step This package is now bundled in the base github runner, and we've removed `apt-get` from the image to prevent mistakes. --- .github/workflows/build.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 91435ca..e07ae69 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -33,11 +33,6 @@ jobs: with: registry-type: public - - name: Install prerequisites for Docker build - run: | - sudo apt-get update - sudo apt-get install -y qemu-user-static - - name: Build and push Docker images env: DOCKER_HUB_KEY: ${{ secrets.DOCKER_HUB_KEY }}