From b3fe7beccf0a94333ce21646a6afde8c92f34a4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9F=A7=91=F0=9F=8F=BB=E2=80=8D=F0=9F=92=BB=20Romain=20M?= =?UTF-8?q?arcadier?= Date: Fri, 4 Aug 2023 15:03:35 +0200 Subject: [PATCH] chore: remove all cached docker images --- .github/workflows/docker-images.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/docker-images.yml b/.github/workflows/docker-images.yml index adce7520c9..fb67a92619 100644 --- a/.github/workflows/docker-images.yml +++ b/.github/workflows/docker-images.yml @@ -33,6 +33,12 @@ jobs: - name: Check out uses: actions/checkout@v3 + # Reclaim disk space by clearing out cached Docker images... + - name: Remove cached Docker images + run: |- + docker image prune --all --force + docker system prune --force + # Determine if we should run the validation or not - name: Should this run? id: should-run