From 31cb6bfe698944443521e9c27ab84163f39d0a01 Mon Sep 17 00:00:00 2001 From: Patrick Date: Sat, 25 Jun 2022 23:46:42 +0200 Subject: [PATCH] Skip action-docker-layer-caching on Ubuntu 20.04 it leads to the runner running out of disk space --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d4c41bb..e9fc786b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,7 +69,8 @@ jobs: - name: Checkout Source uses: actions/checkout@v2 - run: echo "DOCKER_CACHE_PREFIX=$(echo ${{ matrix.os }} | tr -d ' ')-" >> $GITHUB_ENV - - uses: satackey/action-docker-layer-caching@v0.0.10 + - if: matrix.os != 'ubuntu 20.04' + uses: satackey/action-docker-layer-caching@v0.0.10 continue-on-error: true with: key: ${{ env.DOCKER_CACHE_PREFIX }}{hash}