From a36bb44e3a0e4a4e94eb6e32469289522220f6f9 Mon Sep 17 00:00:00 2001 From: aurorax-neo <15047150695@163.com> Date: Mon, 17 Jun 2024 19:45:54 +0800 Subject: [PATCH] fix: correct cache configuration in Build Docker Image.yml --- .github/workflows/Build Docker Image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Build Docker Image.yml b/.github/workflows/Build Docker Image.yml index f6a9be1..d6c3dab 100644 --- a/.github/workflows/Build Docker Image.yml +++ b/.github/workflows/Build Docker Image.yml @@ -55,8 +55,8 @@ jobs: ${{ env.GHCR_REPO }}:latest ${{ env.GHCR_REPO }}:${{ steps.get_docker_image_tag.outputs.tag }} ${{ env.GHCR_REPO }}:${{ github.sha }} - cache-from: types=local,src=/tmp/.buildx-cache - cache-to: types=local,dest=/tmp/.buildx-cache,mode=max + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache,mode=max - name: Delete Workflow Runs uses: Mattraks/delete-workflow-runs@v2