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 3 to 5 #73

Open
wants to merge 1 commit into
base: popets-artifacts-prebuilt
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 @@ -260,7 +260,7 @@ jobs:
with:
submodules: recursive
- name: Build LocalSecret
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
file: deployment/dockerfiles/Dockerfile
context: .
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
uses: docker/setup-buildx-action@v2
- uses: actions/checkout@v3
- name: Build Hermes Image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
file: deployment/dockerfiles/ibc/hermes.Dockerfile
context: deployment/dockerfiles/ibc
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/devnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build & publish docker image for scrt devnet
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
file: hacking/Dockerfile
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: |
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@v3
uses: docker/build-push-action@v5
with:
file: deployment/dockerfiles/Dockerfile
context: .
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push Node Image
if: ${{ matrix.db_backend == 'goleveldb' }}
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
file: deployment/dockerfiles/Dockerfile
context: .
Expand All @@ -118,7 +118,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@v3
uses: docker/build-push-action@v5
with:
file: deployment/dockerfiles/Dockerfile
context: .
Expand Down Expand Up @@ -199,7 +199,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@v3
uses: docker/build-push-action@v5
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@v3
uses: docker/build-push-action@v5
with:
file: deployment/dockerfiles/Dockerfile
context: .
Expand Down
Loading