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

chore(deps): update dependency docker/build-push-action to v6 #3444

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
18 changes: 9 additions & 9 deletions .github/workflows/docker-image-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
run: docker login -u $DOCKERHUB_USER -p $DOCKERHUB_PASS

- name: Build and push - nginx
uses: docker/build-push-action@v4.2.1
uses: docker/build-push-action@v6.13.0
with:
context: ./kubernetes/nginx
push: ${{ env.PUSH }}
Expand All @@ -82,7 +82,7 @@ jobs:
run: mv snyk.sarif nginx.sarif

- name: Build and push - mysql
uses: docker/build-push-action@v4.2.1
uses: docker/build-push-action@v6.13.0
with:
context: ./kubernetes/mysql
push: ${{ env.PUSH }}
Expand All @@ -105,7 +105,7 @@ jobs:
run: mv snyk.sarif mysql.sarif

- name: Build and push - postgres
uses: docker/build-push-action@v4.2.1
uses: docker/build-push-action@v6.13.0
with:
context: ./kubernetes/postgres
push: ${{ env.PUSH }}
Expand All @@ -128,7 +128,7 @@ jobs:
run: mv snyk.sarif postgres.sarif

- name: Build and push - mongodb
uses: docker/build-push-action@v4.2.1
uses: docker/build-push-action@v6.13.0
with:
context: ./kubernetes/mongodb
push: ${{ env.PUSH }}
Expand All @@ -151,7 +151,7 @@ jobs:
run: mv snyk.sarif mongodb.sarif

- name: Build and push - cassandra
uses: docker/build-push-action@v4.2.1
uses: docker/build-push-action@v6.13.0
with:
context: ./kubernetes/cassandra
push: ${{ env.PUSH }}
Expand All @@ -174,7 +174,7 @@ jobs:
run: mv snyk.sarif cassandra.sarif

- name: Build and push - rabbitmq
uses: docker/build-push-action@v4.2.1
uses: docker/build-push-action@v6.13.0
with:
context: ./kubernetes/rabbitmq
push: ${{ env.PUSH }}
Expand All @@ -197,7 +197,7 @@ jobs:
run: mv snyk.sarif rabbitmq.sarif

- name: Build and push - jenkins
uses: docker/build-push-action@v4.2.1
uses: docker/build-push-action@v6.13.0
with:
context: ./kubernetes/monitoring/jenkins
push: ${{ env.PUSH }}
Expand All @@ -209,7 +209,7 @@ jobs:
cache-to: type=local,dest=/tmp/.buildx-cache

- name: Build and push - ab
uses: docker/build-push-action@v4.2.1
uses: docker/build-push-action@v6.13.0
with:
context: ./kubernetes/monitoring/test/ab
push: ${{ env.PUSH }}
Expand All @@ -232,7 +232,7 @@ jobs:
run: mv snyk.sarif ab.sarif

- name: Build and push - postmannewman-quarkus
uses: docker/build-push-action@v4.2.1
uses: docker/build-push-action@v6.13.0
with:
context: ./kubernetes/monitoring/test/postmannewman/quarkus
push: ${{ env.PUSH }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/java-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./mvnw -B verify --settings ../.m2/settings.xml
- name: Build and push
uses: docker/build-push-action@v4.2.1
uses: docker/build-push-action@v6.13.0
with:
file: application/${{ matrix.application }}/src/main/docker/Dockerfile.jvm
context: application/${{ matrix.application }}
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./mvnw -B verify --settings ../.m2/settings.xml -Pnative
- name: Build and push
uses: docker/build-push-action@v4.2.1
uses: docker/build-push-action@v6.13.0
with:
file: application/${{ matrix.application }}/src/main/docker/Dockerfile.native
context: application/${{ matrix.application }}
Expand Down
Loading