Skip to content
This repository was archived by the owner on Dec 16, 2025. It is now read-only.

Commit c9dd851

Browse files
authored
🌱 add buildx in renovate workflow (#162)
add buildx in renovate workflow renovate workflow failed because we build image in that workflow and buildx was missing. buildx is now the default builder of docker and we cannot build images without that. This commit adds buildx to the renovate workflow so that when renovate workflow is run and inside the workflow, if we build docker image then that shouldn't give us any error. Signed-off-by: kranurag7 <[email protected]>
1 parent c74fa89 commit c9dd851

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

‎.github/workflows/schedule-update-bot.yaml‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ jobs:
3232
- name: Checkout
3333
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
3434

35+
# qemu is not required as of now because we don't build images for arm64
36+
# use docker/setup-qemu-action@v3 if you want to have arm64 images.
37+
- name: Set up Docker Buildx # required for building image
38+
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3
39+
3540
- name: Generate Token
3641
uses: actions/create-github-app-token@a0de6af83968303c8c955486bf9739a57d23c7f1 # v1
3742
id: generate-token

0 commit comments

Comments
 (0)