From c0da380e3996d73872ce1c8633b62e3fed9c08e2 Mon Sep 17 00:00:00 2001 From: ben Date: Wed, 23 Nov 2022 15:56:54 -0800 Subject: [PATCH] Update Taqueria version --- Dockerfile | 2 +- README.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4923764..7c174d9 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.24.1/taq-linux /bin/taq +ADD https://github.com/ecadlabs/taqueria/releases/download/v0.24.2/taq-linux /bin/taq # Make the binary executable RUN chmod +x /bin/taq diff --git a/README.md b/README.md index 19bd77b..b09b7f2 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A docker action that helps simplify and standardize the use of [Taqueria](https://taqueria.io/) in GitHub workflows ## Taqueria version -`v0.24.1` +`v0.24.2` ## Inputs @@ -44,7 +44,7 @@ When set to true, all tests in the `tests` directory will be run using the Jest ### Single step action ```yaml - name: taqueria tasks - uses: ecadlabs/taqueria-github-action@v0.11.0 + uses: ecadlabs/taqueria-github-action@v0.12.0 with: plugins: '@taqueria/plugin-ligo, @taqueria/plugin-flextesa, @taqueria/plugin-taquito, @taqueria/plugin-jest' compile_contracts: counter.jsligo @@ -56,19 +56,19 @@ When set to true, all tests in the `tests` directory will be run using the Jest ### Multiple step action ```yaml - name: compile contracts - uses: ecadlabs/taqueria-github-action@v0.11.0 + uses: ecadlabs/taqueria-github-action@v0.12.0 with: project_directory: 'example-projects/hello-tacos' compile_contracts: 'hello-tacos.mligo' - name: start local sandbox - uses: ecadlabs/taqueria-github-action@v0.11.0 + uses: ecadlabs/taqueria-github-action@v0.12.0 with: project_directory: 'example-projects/hello-tacos' sandbox_name: 'local' - name: deploy contracts - uses: ecadlabs/taqueria-github-action@v0.11.0 + uses: ecadlabs/taqueria-github-action@v0.12.0 with: project_directory: 'example-projects/hello-tacos' deploy_contracts: hello-tacos.tz