Skip to content

Commit

Permalink
chore(deps): update docker/build-push-action action to v6 (#131)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jun 27, 2024
1 parent c9e0be3 commit 8e11283
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,28 +31,28 @@ jobs:
run: npm run gherkin-lint

- name: Build flagd-testbed Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: flagd/Dockerfile
push: false

- name: Build flagd-testbed-unstable Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: flagd/Dockerfile.unstable
push: false

- name: Build sync-testbed Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: sync/Dockerfile
push: false

- name: Build sync-testbed-unstable Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: sync/Dockerfile.unstable
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push flagd-testbed Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: flagd/Dockerfile
Expand All @@ -63,7 +63,7 @@ jobs:
${{ env.REGISTRY }}/open-feature/${{ env.FLAGD_IMAGE_NAME }}:latest
- name: Build and push flagd-testbed-unstable Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: flagd/Dockerfile.unstable
Expand All @@ -73,7 +73,7 @@ jobs:
${{ env.REGISTRY }}/open-feature/${{ env.FLAGD_IMAGE_NAME }}-unstable:latest
- name: Build and push sync-testbed Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: sync/Dockerfile
Expand All @@ -83,7 +83,7 @@ jobs:
${{ env.REGISTRY }}/open-feature/${{ env.SYNC_IMAGE_NAME }}:latest
- name: Build and push sync-testbed-unstable Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: sync/Dockerfile.unstable
Expand Down

0 comments on commit 8e11283

Please sign in to comment.