Skip to content

Commit

Permalink
Merge pull request #629 from somleng/dependabot/github_actions/docker…
Browse files Browse the repository at this point in the history
…/build-push-action-6

Bump docker/build-push-action from 5 to 6
  • Loading branch information
github-actions[bot] authored Jun 17, 2024
2 parents 26e0f33 + 212e05d commit ca5b6e6
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/client_gateway.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build and push Client Gateway
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: components/gateway
target: client_gateway
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gateway_commons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build and push OpenSIPS Scheduler
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: components/opensips_scheduler
push: true
Expand All @@ -104,7 +104,7 @@ jobs:
${{ env.OPENSIPS_SCHEDULER_GHCR_REPOSITORY }}:${{ matrix.image_tag }}
- name: Build and push OpenSIPS Bootstrap
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: components/gateway
target: bootstrap
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build Switch App
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: false
load: true
Expand All @@ -68,7 +68,7 @@ jobs:
cache-to: type=gha,mode=max,scope=integration-tests-switch-app

- name: Build FreeSWITCH
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: false
load: true
Expand All @@ -80,7 +80,7 @@ jobs:
cache-to: type=gha,mode=max,scope=integration-tests-freeswitch

- name: Build FreeSWITCH Event Logger
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: false
load: true
Expand All @@ -90,7 +90,7 @@ jobs:
cache-to: type=gha,mode=max,scope=integration-tests-freeswitch-event-logger

- name: Build Public Gateway
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: false
load: true
Expand All @@ -101,7 +101,7 @@ jobs:
cache-to: type=gha,mode=max,scope=integration-tests-public-gateway

- name: Build Client Gateway
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: false
load: true
Expand All @@ -112,7 +112,7 @@ jobs:
cache-to: type=gha,mode=max,scope=integration-tests-client-gateway

- name: Build Media Proxy
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: false
load: true
Expand All @@ -122,7 +122,7 @@ jobs:
cache-to: type=gha,mode=max,scope=integration-tests-media-proxy

- name: Build Gateway Bootstrap
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: false
load: true
Expand All @@ -133,7 +133,7 @@ jobs:
cache-to: type=gha,mode=max,scope=integration-tests-gateway-bootstrap

- name: Build Testing
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: false
load: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/media_proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build and push Media Proxy
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: components/media_proxy
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/public_gateway.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build and push Public Gateway
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: components/gateway
target: public_gateway
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/s3_mpeg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
provenance: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
provenance: false
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/switch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build and push Nginx
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: components/nginx
push: true
Expand All @@ -155,7 +155,7 @@ jobs:
${{ env.NGINX_GHCR_REPOSITORY_URI }}:${{ matrix.image_tag }}
- name: Build and push FreeSWITCH
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: components/freeswitch
build-args:
Expand All @@ -170,7 +170,7 @@ jobs:
${{ env.FREESWITCH_GHCR_REPOSITORY_URI }}:${{ matrix.image_tag }}
- name: Build and push FreeSWITCH Event Logger
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: components/freeswitch_event_logger
push: true
Expand All @@ -183,7 +183,7 @@ jobs:
${{ env.FREESWITCH_EVENT_LOGGER_GHCR_REPOSITORY_URI }}:${{ matrix.image_tag }}
- name: Build and push App
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: components/app
push: true
Expand Down

0 comments on commit ca5b6e6

Please sign in to comment.