diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 33c73cb658..0965f122b5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,8 +40,6 @@ jobs: with: push: false builder: ${{ steps.buildx.outputs.name }} - set: | - *.cache-from=type=gha - *.cache-to=type=gha,mode=max + load: true - name: Run run: make login-lint diff --git a/docker-bake.hcl b/docker-bake.hcl index 60a67813a8..410cb46873 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -1,5 +1,7 @@ group "default" { targets = [ + "login-pnpm", + "login-dev-base", "login-lint", ] } @@ -11,7 +13,6 @@ variable "LOGIN_PNPM_TAG" { target "login-pnpm" { dockerfile = "dockerfiles/login-pnpm.Dockerfile" tags = ["${LOGIN_PNPM_TAG}"] - output = ["type=docker"] } variable "LOGIN_DEV_BASE_TAG" { @@ -24,7 +25,6 @@ target "login-dev-base" { login-pnpm = "target:login-pnpm" } tags = ["${LOGIN_DEV_BASE_TAG}"] - output = ["type=docker"] } variable "LOGIN_LINT_TAG" { @@ -37,7 +37,6 @@ target "login-lint" { login-dev-base = "target:login-dev-base" } tags = ["${LOGIN_LINT_TAG}"] - output = ["type=docker"] } variable "LOGIN_TEST_UNIT_TAG" {