From 0b80adb018e90cd503e58e5d941301d9cc038ed9 Mon Sep 17 00:00:00 2001 From: Zeke Sikelianos Date: Mon, 17 Jun 2024 14:00:45 -0700 Subject: [PATCH] configure buildx step to use docker driver --- action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/action.yml b/action.yml index e8d2d45..ebb6642 100644 --- a/action.yml +++ b/action.yml @@ -27,6 +27,8 @@ runs: steps: - name: Set up Docker buildx uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0 + with: + driver: "docker" - name: Install NVIDIA CUDA Toolkit if: inputs.install-cuda == true || inputs.install-cuda == 'true'