Skip to content

Commit

Permalink
Merge pull request #75 from stakater/renovate/docker-build-push-actio…
Browse files Browse the repository at this point in the history
…n-5.x

Update docker/build-push-action action to v5
  • Loading branch information
karl-johan-grahn authored Oct 18, 2023
2 parents 2b27b4e + 9867ddc commit f36ef47
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@v4
uses: docker/build-push-action@v5
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@v4
uses: docker/build-push-action@v5
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@v4
uses: docker/build-push-action@v5
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@v4
uses: docker/build-push-action@v5
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 @@ -74,7 +74,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@v4
uses: docker/build-push-action@v5
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 @@ -75,7 +75,7 @@ jobs:
password: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }}

- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
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 @@ -68,7 +68,7 @@ jobs:
password: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }}

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

0 comments on commit f36ef47

Please sign in to comment.