Hennadii Stepanov 2023-09-12 10:18:39 +01:00
parent b10ddd2bd2
commit d9d80fd155
No known key found for this signature in database
GPG Key ID: 410108112E7EA81F
2 changed files with 5 additions and 5 deletions

View File

@ -14,9 +14,9 @@ inputs:
runs: runs:
using: "composite" using: "composite"
steps: steps:
- uses: docker/setup-buildx-action@v2 - uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v4 - uses: docker/build-push-action@v5
id: main_builder id: main_builder
continue-on-error: true continue-on-error: true
with: with:
@ -26,7 +26,7 @@ runs:
load: true load: true
cache-from: type=gha cache-from: type=gha
- uses: docker/build-push-action@v4 - uses: docker/build-push-action@v5
id: retry_builder id: retry_builder
if: steps.main_builder.outcome == 'failure' if: steps.main_builder.outcome == 'failure'
with: with:

View File

@ -47,14 +47,14 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2 uses: docker/setup-buildx-action@v3
with: with:
# See: https://github.com/moby/buildkit/issues/3969. # See: https://github.com/moby/buildkit/issues/3969.
driver-opts: | driver-opts: |
network=host network=host
- name: Build container - name: Build container
uses: docker/build-push-action@v4 uses: docker/build-push-action@v5
with: with:
file: ./ci/linux-debian.Dockerfile file: ./ci/linux-debian.Dockerfile
tags: linux-debian-image tags: linux-debian-image