Skip to content

Commit

Permalink
chore(deps): update docker/build-push-action action to v6 (#111)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jul 29, 2024
1 parent f9eef05 commit 433ada0
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/operator_pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
echo IMAGE_REPOSITORY=$(echo ${{ secrets.CONTAINER_REGISTRY_URL }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ${{ inputs.DOCKERFILE_PATH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/operator_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:
password: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }}

- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ${{ inputs.DOCKERFILE_PATH }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_operator_image_and_bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jobs:
# Build and push tag
- name: Build and push
id: build_and_push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ inputs.SUBPATH }}
file: ${{ inputs.DOCKER_FILE_PATH }}
Expand All @@ -201,7 +201,7 @@ jobs:
# Build and push "latest" tag
# latest tag requires submitted preflight results
- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ inputs.SUBPATH }}
file: ${{ inputs.DOCKER_FILE_PATH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request_container_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
echo IMAGE_REPOSITORY=$(echo ${{ secrets.CONTAINER_REGISTRY_URL }}/${{ github.repository }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
build-contexts: ${{ inputs.DOCKER_BUILD_CONTEXTS }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
password: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }}

- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ${{ inputs.DOCKER_FILE_PATH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_container_only.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
password: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }}

- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
build-contexts: ${{ inputs.DOCKER_BUILD_CONTEXTS }}
Expand Down

0 comments on commit 433ada0

Please sign in to comment.