Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/actions/docker-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ runs:

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
buildkitd-config: /etc/buildkit/buildkitd.toml

- name: Prepare security scan vars
if: inputs.security-scan-enabled == 'true'
Expand Down
10 changes: 10 additions & 0 deletions .github/actions/security-container-scan/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
buildkitd-config: /etc/buildkit/buildkitd.toml

Comment on lines +42 to +46

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Example code, but this is intentional to make sure the example is complete and correct.

- name: Build image locally
uses: docker/build-push-action@v5
with:
Expand Down Expand Up @@ -68,6 +73,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
buildkitd-config: /etc/buildkit/buildkitd.toml

Comment on lines +76 to +80

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Example code, but this is intentional to make sure the example is complete and correct.

- name: Build image locally
uses: docker/build-push-action@v5
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/build-cds-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ jobs:

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
buildkitd-config: /etc/buildkit/buildkitd.toml

- name: Log in to GitHub Container Registry
if: github.ref == 'refs/heads/main'
Expand Down
Loading