From 4e2e314d4036af75c8f54a2a5bd2c8060aed11ac Mon Sep 17 00:00:00 2001 From: Heather Ward Date: Mon, 5 Jun 2023 12:27:06 -0400 Subject: [PATCH] Bump version --- README.md | 8 ++++---- action.yml | 10 +++++----- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4303e68..89576fa 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ If any step of the action fails, the check will fail; however if some task tests # GitHub action usage ```yaml -- uses: dnastack/wdl-ci@v0.1.7 +- uses: dnastack/wdl-ci@v0.1.8 with: # Configuration file where tests can be found # Default: wdl-ci.config.json @@ -86,7 +86,7 @@ jobs: with: submodules: true - name: wdl-ci - uses: dnastack/wdl-ci@v0.1.7 + uses: dnastack/wdl-ci@v0.1.8 with: wallet-url: ${{ secrets.WALLET_URL }} wallet-client-id: ${{ secrets.WALLET_CLIENT_ID }} @@ -114,7 +114,7 @@ jobs: repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.event.pull_request.head.ref }} - name: wdl-ci - uses: dnastack/wdl-ci@v0.1.7 + uses: dnastack/wdl-ci@v0.1.8 with: wallet-url: ${{ secrets.WALLET_URL }} wallet-client-id: ${{ secrets.WALLET_CLIENT_ID }} @@ -144,7 +144,7 @@ jobs: repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.event.pull_request.head.ref }} - name: wdl-ci - uses: dnastack/wdl-ci@v0.1.7 + uses: dnastack/wdl-ci@v0.1.8 with: wallet-url: ${{ secrets.WALLET_URL }} wallet-client-id: ${{ secrets.WALLET_CLIENT_ID }} diff --git a/action.yml b/action.yml index 611808a..b9a7008 100644 --- a/action.yml +++ b/action.yml @@ -50,19 +50,19 @@ runs: echo "WDL_CI_CUSTOM_TEST_WDL_DIR"=${{ inputs.wdl_ci_custom_test_wdl_dir }} >> $GITHUB_ENV fi - name: lint - uses: docker://dnastack/wdl-ci:v0.1.7 + uses: docker://dnastack/wdl-ci:v0.1.8 with: args: lint - name: detect-changes - uses: docker://dnastack/wdl-ci:v0.1.7 + uses: docker://dnastack/wdl-ci:v0.1.8 with: args: detect-changes - name: submit - uses: docker://dnastack/wdl-ci:v0.1.7 + uses: docker://dnastack/wdl-ci:v0.1.8 with: args: submit - name: monitor - uses: docker://dnastack/wdl-ci:v0.1.7 + uses: docker://dnastack/wdl-ci:v0.1.8 with: args: monitor --update-digests # If a test fails, still update task digests for any tests that succeeded @@ -76,6 +76,6 @@ runs: default_author: github_actions - name: cleanup if: always() - uses: docker://dnastack/wdl-ci:v0.1.7 + uses: docker://dnastack/wdl-ci:v0.1.8 with: args: cleanup diff --git a/pyproject.toml b/pyproject.toml index b3c9ed5..a35db06 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "wdl-testing-cli" description = "DNAstack WDL testing CLI" -version = "v0.1.7" +version = "v0.1.8" authors = [ { name = "DNAstack", email = "devs@dnastack.com" } ]