Skip to content

Commit

Permalink
Bump version; use v4 of the checkout action
Browse files Browse the repository at this point in the history
  • Loading branch information
hkeward committed Nov 19, 2024
1 parent 909defd commit fc2e376
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected].2
- uses: dnastack/[email protected].3
with:
# Configuration file where tests can be found
# Default: wdl-ci.config.json
Expand Down Expand Up @@ -87,11 +87,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: wdl-ci
uses: dnastack/[email protected].2
uses: dnastack/[email protected].3
with:
wallet-url: ${{ secrets.WALLET_URL }}
wallet-client-id: ${{ secrets.WALLET_CLIENT_ID }}
Expand All @@ -113,13 +113,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- name: wdl-ci
uses: dnastack/[email protected].2
uses: dnastack/[email protected].3
with:
wallet-url: ${{ secrets.WALLET_URL }}
wallet-client-id: ${{ secrets.WALLET_CLIENT_ID }}
Expand All @@ -143,13 +143,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- name: wdl-ci
uses: dnastack/[email protected].2
uses: dnastack/[email protected].3
with:
wallet-url: ${{ secrets.WALLET_URL }}
wallet-client-id: ${{ secrets.WALLET_CLIENT_ID }}
Expand Down
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,19 +53,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:v2.0.2
uses: docker://dnastack/wdl-ci:v2.0.3
with:
args: lint ${{ inputs.suppress-lint-errors && '--suppress-lint-errors' || '' }}
- name: detect-changes
uses: docker://dnastack/wdl-ci:v2.0.2
uses: docker://dnastack/wdl-ci:v2.0.3
with:
args: detect-changes
- name: submit
uses: docker://dnastack/wdl-ci:v2.0.2
uses: docker://dnastack/wdl-ci:v2.0.3
with:
args: submit
- name: monitor
uses: docker://dnastack/wdl-ci:v2.0.2
uses: docker://dnastack/wdl-ci:v2.0.3
with:
args: monitor --update-digests
# If a test fails, still update task digests for any tests that succeeded
Expand All @@ -80,6 +80,6 @@ runs:
fetch: false
- name: cleanup
if: always()
uses: docker://dnastack/wdl-ci:v2.0.2
uses: docker://dnastack/wdl-ci:v2.0.3
with:
args: cleanup
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "wdl-testing-cli"
description = "DNAstack WDL testing CLI"
version = "2.0.2"
version = "2.0.3"
authors = [
{ name = "DNAstack", email = "[email protected]" }
]
Expand Down

0 comments on commit fc2e376

Please sign in to comment.