Skip to content

Commit

Permalink
Merge pull request #1296 from trilitech/upgrade-tzkt
Browse files Browse the repository at this point in the history
Upgrade tzkt to 1.13.4
  • Loading branch information
serjonya-trili authored May 26, 2024
2 parents b46647b + 2054e66 commit ce0f538
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
timeout-minutes: 20
runs-on: ubuntu-latest-m
env:
TZKT_SYNC_IMAGE: bakingbad/tzkt-sync:1.13.3
TZKT_API_IMAGE: serjonya/tzkt-api:1.13.3-linux
TZKT_SYNC_IMAGE: bakingbad/tzkt-sync:1.13.4
TZKT_API_IMAGE: serjonya/tzkt-api:1.13.4-linux

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.tzktApi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# update the versions also in the docker-compose.yaml & e2e.yaml files
# it's done that way to force local docker to pull correct image version
# NOTE: must be built locally manually
FROM --platform=$BUILDPLATFORM bakingbad/tzkt-api:1.13.3
FROM --platform=$BUILDPLATFORM bakingbad/tzkt-api:1.13.4
USER root
RUN apt-get update && apt-get install -y curl
USER tzkt
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ services:
sync:
container_name: "tzkt-sync-${CUCUMBER_WORKER_ID:-0}"
restart: always
image: ${TZKT_SYNC_IMAGE:-serjonya/tzkt-sync:1.13.3}
image: ${TZKT_SYNC_IMAGE:-serjonya/tzkt-sync:1.13.4}
environment:
ConnectionStrings__DefaultConnection: host=db;port=5432;database=${POSTGRES_DB:-tzkt_db};username=${POSTGRES_USER:-tzkt};password=${POSTGRES_PASSWORD:-qwerty};command timeout=${COMMAND_TIMEOUT:-600};
Kestrel__Endpoints__Http__Url: http://0.0.0.0:5001
Expand All @@ -57,7 +57,7 @@ services:
api:
container_name: "tzkt-api-${CUCUMBER_WORKER_ID:-0}"
restart: always
image: ${TZKT_API_IMAGE:-serjonya/tzkt-api:1.13.3}
image: ${TZKT_API_IMAGE:-serjonya/tzkt-api:1.13.4}
depends_on:
sync:
condition: service_started
Expand Down

1 comment on commit ce0f538

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.
Category Percentage Covered / Total
🟢 Statements 89.5% 3672/4103
🟢 Branches 81.78% 1270/1553
🟢 Functions 87.73% 1115/1271
🟢 Lines 89.42% 3474/3885

Test suite run success

1437 tests passing in 184 suites.

Report generated by 🧪jest coverage report action from ce0f538

Please sign in to comment.