CrazyMax

Results 1192 comments of CrazyMax

@Meemaw Can you [enable debug](https://github.com/docker/setup-buildx-action#buildkit-container-logs) in the `Set up Docker Buildx` step: ```yaml - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 with: buildkitd-flags: --debug ``` And post BuildKit container logs...

Thanks. Can you give the output of `Docker info` and `BuildKit version` in the `Set up Docker Buildx` step please?

> Also seeing this error in the Cache Docker layers step in case relevant: Interesting so cache seems corrupted in GitHub. > Can you give me an example on how...

@Meemaw > Error: Cannot find buildx v0.9.3 release My bad: ```yaml - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 with: driver-opts: | image=moby/buildkit:v0.9.3 ```

@Meemaw With the exact same step in https://github.com/docker/build-push-action/issues/577#issuecomment-1079030579?

@Meemaw [Works fine](https://github.com/crazy-max/buildx-buildkit-tests/runs/5743139674?check_suite_focus=true#step:4:126) for me with this step: https://github.com/crazy-max/buildx-buildkit-tests/blob/43e41154a597cdf1548852266db3daa179901510/.github/workflows/build-push-action-577.yml#L16-L22

@Meemaw > Fails on that version as well -- same error. Ok, I thought the setup-buildx step had failed. So looking at https://github.com/docker/build-push-action/issues/577#issuecomment-1078973976, your GitHub cache looks busted. Looks like...

Yes I think we should just skip and not fail in this case. Will try to repro on my side.

@felipecrs If I understand correctly you want to transpose the bake target name as a tag?

@lucacome > a workflow that checks out the latest tag git sha used by the metadata action is the one from the context when the workflow is triggered (before any...