Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump docker/build-push-action from 4 to 5 #225

Closed
Closed
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: 1 addition & 1 deletion .github/workflows/new-ubuntu-base-image-requested.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
# Base image #
##################
- name: Build and publish
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
id: build_ubuntu_base_image
with:
file: ./images/ubuntu/base/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/new-ubuntu-hub-image-requested.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
# Hub image #
#################
- name: Build and publish
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
id: build_ubuntu_hub_image
with:
file: ./images/ubuntu/hub/Dockerfile
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
# Ubuntu Editor image #
###########################
- name: Build and publish
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
id: build_ubuntu_editor_image
continue-on-error: true
with:
Expand All @@ -126,7 +126,7 @@ jobs:
# Retry the above #
#######################
- name: Build and publish (retry)
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
if: steps.build_ubuntu_editor_image.outcome=='failure'
id: build_ubuntu_editor_image_retry
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
# Ubuntu Editor image #
###########################
- name: Build and publish
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
id: build_ubuntu_editor_image
continue-on-error: true
with:
Expand All @@ -126,7 +126,7 @@ jobs:
# Retry the above #
#######################
- name: Build and publish (retry)
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
if: steps.build_ubuntu_editor_image.outcome=='failure'
id: build_ubuntu_editor_image_retry
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/retry-ubuntu-editor-image-requested.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
# Editor image #
####################
- name: Build and publish
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
id: build_ubuntu_editor_image
continue-on-error: true
with:
Expand All @@ -107,7 +107,7 @@ jobs:
# Retry the above #
#######################
- name: Build and publish (retry)
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
if: steps.build_ubuntu_editor_image.outcome=='failure'
id: build_ubuntu_editor_image_retry
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,12 @@ jobs:
# Build Ubuntu base and hub #
#################################
- name: Build base
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: ./images/ubuntu/base/Dockerfile
tags: base:ubuntu-dev
- name: Build hub
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: ./images/ubuntu/hub/Dockerfile
build-args: baseImage=base:ubuntu-dev
Expand Down Expand Up @@ -297,7 +297,7 @@ jobs:
###########################
- name: Build
# if: steps.build-1.outcome == 'failure'
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
id: build-1
continue-on-error: true
timeout-minutes: 40
Expand All @@ -320,7 +320,7 @@ jobs:

- name: Build (Retry)
if: steps.build-1.outcome == 'failure'
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
id: build-2
# continue-on-error: true
timeout-minutes: 40
Expand Down
Loading