diff --git a/.github/workflows/action-tests.yml b/.github/workflows/action-tests.yml index e287900..f5d7c63 100644 --- a/.github/workflows/action-tests.yml +++ b/.github/workflows/action-tests.yml @@ -1,7 +1,14 @@ --- name: Action tests -on: [push] +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '0 0 * * *' + concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/Dockerfile b/Dockerfile index 1af9f07..612bad6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ENV DENO_DIR=/deno COPY --from=docker:dind /usr/local/bin/docker /bin/docker # Download the Taqueria release binary for Linux to /bin/taq -ADD https://github.com/ecadlabs/taqueria/releases/download/v0.12.0/taq-linux /bin/taq +ADD https://github.com/ecadlabs/taqueria/releases/latest/download/taq-linux /bin/taq # Make the binary executable RUN chmod +x /bin/taq