diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 59c928b..1853c39 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -52,14 +52,6 @@ jobs: driver: docker-container use: true - - name: Cache Docker layers - uses: actions/cache@v4 - with: - path: /tmp/.buildx-cache - key: ${{ runner.os }}-buildx-${{ github.sha }} - restore-keys: | - ${{ runner.os }}-buildx- - - name: Login to DockerHub if: github.event_name == 'push' uses: docker/login-action@v1 @@ -78,8 +70,6 @@ jobs: tags: ${{ env.IMAGE }}:${{ env.LATEST }} build-args: | TENTACLES_URL_TAG=${{ env.LATEST }} - cache-from: type=local,src=/tmp/.buildx-cache - cache-to: type=local,dest=/tmp/.buildx-cache - name: Build and push on tag if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') @@ -93,8 +83,6 @@ jobs: tags: | ${{ env.IMAGE }}:${{ env.LATEST }} ${{ env.IMAGE }}:${{ env.VERSION }} - cache-from: type=local,src=/tmp/.buildx-cache - cache-to: type=local,dest=/tmp/.buildx-cache notify: if: ${{ failure() }}