Skip to content

Commit

Permalink
Merge pull request #963 from sdr-enthusiasts/dependabot/github_action…
Browse files Browse the repository at this point in the history
…s/docker/setup-buildx-action-3

chore(deps): Bump docker/setup-buildx-action from 2 to 3
  • Loading branch information
fredclausen authored Sep 18, 2023
2 parents 34afd20 + 8b18c2e commit 2510b75
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
- name: Set up Docker Buildx
id: buildx
if: steps.changed-files-specific.outputs.any_changed == 'true' || github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.reason != '')
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

# Change the dockerfile to use the test image if we've been triggered as a test

Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
- name: Set up Docker Buildx
id: buildx
if: steps.changed-files-specific.outputs.any_changed == 'true' || github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.reason != '')
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

# Build & Push Dockerfile (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-acarshub:latest
Expand Down Expand Up @@ -350,7 +350,7 @@ jobs:
- name: Set up Docker Buildx
id: buildx
if: steps.changed-files-specific.outputs.any_changed == 'true' || github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.reason != '')
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

# Build & Push Dockerfile (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-acarshub:version specific
Expand Down Expand Up @@ -443,7 +443,7 @@ jobs:
- name: Set up Docker Buildx
id: buildx
if: steps.changed-files-specific.outputs.any_changed == 'true' || github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.reason != '')
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

# Patch dockerfile to remove healthcheck
- name: Patch Dockerfile to remove healthcheck
Expand Down Expand Up @@ -543,7 +543,7 @@ jobs:
- name: Set up Docker Buildx
id: buildx
if: steps.changed-files-specific.outputs.any_changed == 'true' || github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.reason != '')
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

# Patch dockerfile to remove healthcheck
- name: Patch Dockerfile to remove healthcheck
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-pr build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
- name: Set up Docker Buildx
id: buildx
if: steps.changed-files-specific.outputs.any_changed == 'true'
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

# Build & Push Dockerfile (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-acarshub:nextgen-test
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
- name: Set up Docker Buildx
id: buildx
if: steps.changed-files-specific.outputs.any_changed == 'true'
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Patch Dockerfile if Nextgen was built for this branch
if: steps.changed-file-nextgen.outputs.any_changed == 'true'
Expand Down

0 comments on commit 2510b75

Please sign in to comment.