diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index f97c6e3..babe2e4 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -70,12 +70,12 @@ jobs: - name: Download sink binaries run: | - wget https://github.com/apibara/dna/releases/download/sink-webhook/v0.3.1/sink-webhook-x86_64-linux.gz + wget https://github.com/apibara/dna/releases/download/sink-webhook/v0.3.2/sink-webhook-x86_64-linux.gz gunzip sink-webhook-x86_64-linux.gz sudo cp sink-webhook-x86_64-linux /bin/sink-webhook sudo chmod 777 /bin/sink-webhook - wget https://github.com/apibara/dna/releases/download/sink-postgres/v0.4.1/sink-postgres-x86_64-linux.gz + wget https://github.com/apibara/dna/releases/download/sink-postgres/v0.4.2/sink-postgres-x86_64-linux.gz gunzip sink-postgres-x86_64-linux.gz sudo cp sink-postgres-x86_64-linux /bin/sink-postgres sudo chmod 777 /bin/sink-postgres diff --git a/Dockerfile b/Dockerfile index 6921628..4dc8886 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,12 +45,12 @@ cp ./target/release/$APP_NAME /bin/server EOF # Download sink-webhook from the Github release -RUN wget https://github.com/apibara/dna/releases/download/sink-webhook/v0.3.1/sink-webhook-x86_64-linux.gz +RUN wget https://github.com/apibara/dna/releases/download/sink-webhook/v0.3.2/sink-webhook-x86_64-linux.gz RUN gunzip sink-webhook-x86_64-linux.gz RUN cp sink-webhook-x86_64-linux /bin/sink-webhook # Download sink-postgres from the Github release -RUN wget https://github.com/apibara/dna/releases/download/sink-postgres/v0.4.1/sink-postgres-x86_64-linux.gz +RUN wget https://github.com/apibara/dna/releases/download/sink-postgres/v0.4.2/sink-postgres-x86_64-linux.gz RUN gunzip sink-postgres-x86_64-linux.gz RUN cp sink-postgres-x86_64-linux /bin/sink-postgres