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

Bump docker/build-push-action from 6.10.0 to 6.11.0 #350

Merged
Merged
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
22 changes: 11 additions & 11 deletions .github/workflows/deploy_ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:

# Build & Push Dockerfile (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-baseimage:base
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ./Dockerfile.base
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:

# Build & Push Dockerfile (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-baseimage:mlatclient
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ./Dockerfile.mlatclient
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
uses: docker/setup-buildx-action@v3.8.0
# Build & Push Dockerfile.python (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-baseimage:python
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ./Dockerfile.python
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
uses: docker/setup-buildx-action@v3.8.0
# Build & Push Dockerfile.rtlsdr (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-baseimage:rtlsdr
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ./Dockerfile.rtlsdr
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:
uses: docker/setup-buildx-action@v3.8.0
# Build & Push Dockerfile.readsb-netonly (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-baseimage:readsb-netonly
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ./Dockerfile.readsb-netonly
Expand Down Expand Up @@ -335,7 +335,7 @@ jobs:

# Build & Push Dockerfile.readsb-full (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-baseimage:readsb-full
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ./Dockerfile.readsb-full
Expand Down Expand Up @@ -386,7 +386,7 @@ jobs:

# Build & Push Dockerfile.acars (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-baseimage:acars-decoder
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ./Dockerfile.acars-decoder
Expand Down Expand Up @@ -437,7 +437,7 @@ jobs:

# Build & Push Dockerfile (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-baseimage:soapyrtlsdr
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ./Dockerfile.soapyrtlsdr
Expand Down Expand Up @@ -488,7 +488,7 @@ jobs:

# Build & Push Dockerfile (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-baseimage:dump978-full
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ./Dockerfile.dump978-full
Expand Down Expand Up @@ -539,7 +539,7 @@ jobs:

# Build & Push Dockerfile (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-baseimage:wreadsb
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ./Dockerfile.wreadsb
Expand Down Expand Up @@ -590,7 +590,7 @@ jobs:

# Build & Push Dockerfile (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-baseimage:qemu
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ./Dockerfile.qemu
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy_wreadsb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

# Build & Push Dockerfile (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-baseimage:wreadsb
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ./Dockerfile.wreadsb
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:

# Build & Push Dockerfile (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-baseimage:mlatclient
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ./Dockerfile.mlatclient
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/on_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
# Build & Push
- name: Test Build & Push ${{ env.IMAGE_NAME }}:${{ env.TAG }}
if: steps.changed-files-specific.outputs.any_changed == 'true'
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ${{ env.DOCKERFILE }}
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
# Build & Push
- name: Test Build & Push ${{ env.IMAGE_NAME }}:${{ env.TAG }}
if: steps.changed-files-specific.outputs.any_changed == 'true'
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ${{ env.DOCKERFILE }}
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
# Build & Push
- name: Test Build & Push ${{ env.IMAGE_NAME }}:${{ env.TAG }}
if: steps.changed-files-specific.outputs.any_changed == 'true'
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ${{ env.DOCKERFILE }}
Expand Down Expand Up @@ -335,7 +335,7 @@ jobs:
# Build & Push
- name: Test Build & Push ${{ env.IMAGE_NAME }}:${{ env.TAG }}
if: steps.changed-files-specific.outputs.any_changed == 'true'
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ${{ env.DOCKERFILE }}
Expand Down Expand Up @@ -426,7 +426,7 @@ jobs:
# Build & Push
- name: Test Build & Push ${{ env.IMAGE_NAME }}:${{ env.TAG }}
if: steps.changed-files-specific.outputs.any_changed == 'true'
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ${{ env.DOCKERFILE }}
Expand Down Expand Up @@ -519,7 +519,7 @@ jobs:
# Build & Push
- name: Test Build & Push ${{ env.IMAGE_NAME }}:${{ env.TAG }}
if: steps.changed-files-specific.outputs.any_changed == 'true'
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ${{ env.DOCKERFILE }}
Expand Down Expand Up @@ -612,7 +612,7 @@ jobs:
# Build & Push
- name: Test Build & Push ${{ env.IMAGE_NAME }}:${{ env.TAG }}
if: steps.changed-files-specific.outputs.any_changed == 'true'
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ${{ env.DOCKERFILE }}
Expand Down Expand Up @@ -705,7 +705,7 @@ jobs:
# Build & Push Dockerfile (only push if this action was NOT triggered by a PR)
- name: Test Build & Push ${{ env.IMAGE_NAME }}:${{ env.TAG }}
if: steps.changed-files-specific.outputs.any_changed == 'true'
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ${{ env.DOCKERFILE }}
Expand Down Expand Up @@ -799,7 +799,7 @@ jobs:
# Build & Push
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-baseimage:dump978-full
if: steps.changed-files-specific.outputs.any_changed == 'true'
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ./Dockerfile.dump978-full
Expand Down Expand Up @@ -889,7 +889,7 @@ jobs:
# Build & Push
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-baseimage:wreadsb
if: steps.changed-files-specific.outputs.any_changed == 'true'
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ${{ env.DOCKERFILE }}
Expand Down Expand Up @@ -980,7 +980,7 @@ jobs:
# Build & Push
- name: Test Build & Push ${{ env.IMAGE_NAME }}:${{ env.TAG }}
if: steps.changed-files-specific.outputs.any_changed == 'true'
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ${{ env.DOCKERFILE }}
Expand Down
Loading