Skip to content
Merged
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
10 changes: 9 additions & 1 deletion .github/workflows/reusable-docker-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,13 @@ on:
description: "Docker build arguments."
required: false
type: string
docker-build-cache-disabled:
description: |
Disable Docker build cache. See `--no-cache` flag in:
https://docs.docker.com/engine/reference/commandline/buildx_build/#cache
required: false
type: string
default: "false"
docker-build-context:
description: "Path to Docker build context."
required: true
Expand Down Expand Up @@ -359,7 +366,7 @@ jobs:

- name: Docker image build
id: build
uses: smartcontractkit/.github/actions/build-push-docker@build-push-docker/0.6.0
uses: smartcontractkit/.github/actions/build-push-docker@build-push-docker/0.6.1

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow

Unpinned 3rd party Action 'Reusable Docker Build and Publish' step [Uses Step: build](1) uses 'smartcontractkit/.github/actions/build-push-docker' with ref 'build-push-docker/0.6.1', not a pinned commit hash
with:
platform: ${{ format('linux/{0}', matrix.arch) }}
docker-registry-url: >-
Expand All @@ -376,6 +383,7 @@ jobs:
tags: ${{ steps.set-docker-image-tags.outputs.tags }}
dockerfile: ${{ inputs.dockerfile }}
docker-build-args: ${{ inputs.docker-build-args }}
docker-build-cache-disabled: ${{ inputs.docker-build-cache-disabled }}
context: ${{ inputs.docker-build-context }}
aws-account-number: ${{ secrets.AWS_ACCOUNT_ID }}
aws-role-arn: ${{ secrets.AWS_ROLE_PUBLISH_ARN }}
Expand Down