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 4 to 6 #1665

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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ jobs:
with:
submodules: recursive
- name: Build LocalSecret
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
file: deployment/dockerfiles/Dockerfile
context: .
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
uses: docker/setup-buildx-action@v2
- uses: actions/checkout@v4
- name: Build Hermes Image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
file: deployment/dockerfiles/ibc/hermes.Dockerfile
context: deployment/dockerfiles/ibc
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
- name: Build .deb Package Image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
file: deployment/dockerfiles/Dockerfile
context: .
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push Node Image
if: ${{ matrix.db_backend == 'goleveldb' }}
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
file: deployment/dockerfiles/Dockerfile
context: .
Expand All @@ -115,7 +115,7 @@ jobs:
echo "DOCKER_CGO_LDFLAGS=-L/usr/lib/x86_64-linux-gnu/ -lrocksdb -lstdc++ -llz4 -lm -lz -lbz2 -lsnappy" >> $GITHUB_ENV

- name: Build .deb Package Image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
file: deployment/dockerfiles/Dockerfile
context: .
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
- name: Build check-hw-tool image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
file: deployment/dockerfiles/Dockerfile
context: .
Expand Down Expand Up @@ -243,7 +243,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build LocalSecret
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
file: deployment/dockerfiles/Dockerfile
context: .
Expand Down
Loading