diff --git a/github/README.md b/github/README.md index d15662d13..4453d12cd 100644 --- a/github/README.md +++ b/github/README.md @@ -36,7 +36,7 @@ jobs: java-version: '21' - name: Run OpenTaint code analysis - uses: seqra/opentaint/github@v2 + uses: seqra/opentaint/github@github/v0 ``` @@ -66,7 +66,7 @@ jobs: java-version: '21' - name: Run OpenTaint code analysis - uses: seqra/opentaint/github@v2 + uses: seqra/opentaint/github@github/v0 with: upload-sarif: 'true' artifact-name: 'sarif' @@ -99,7 +99,7 @@ jobs: java-version: '21' - name: Run OpenTaint code analysis - uses: seqra/opentaint/github@v2 + uses: seqra/opentaint/github@github/v0 with: # Relative path under $GITHUB_WORKSPACE to the root of the analyzed project project-root: '.' @@ -109,11 +109,11 @@ jobs: # OpenTaint version selector: # - latest (latest stable) - # - v2 (latest stable in major v2) - # - v2.0 (latest stable in minor v2.0) - # - v2.0.2 (exact) - # Default is 'v2' - opentaint-version: 'v2' + # - v0 (latest stable in major v0) + # - v0.1 (latest stable in minor v0.1) + # - v0.1.0 (exact) + # Default is 'v0' + opentaint-version: 'v0' # Paths to custom rules directories (comma-separated) # By default it uses builtin rules @@ -147,9 +147,9 @@ After the job completes, you’ll find: `opentaint-version` supports flexible selectors so you do not need to update this action for every OpenTaint release: * `latest` - always use the latest stable release -* `v2` - use the latest stable release in major version 2 (default) -* `v2.0` - use the latest stable patch in minor version 2.0 -* `v2.0.1` - pin an exact release +* `v0` - use the latest stable release in major version 0 (default) +* `v0.1` - use the latest stable patch in minor version 0.1 +* `v0.1.0` - pin an exact release Examples: @@ -160,7 +160,7 @@ with: ```yaml with: - opentaint-version: 'v2.0' + opentaint-version: 'v0.1' ``` diff --git a/github/action.yml b/github/action.yml index be7ec99cb..9b9f1abda 100644 --- a/github/action.yml +++ b/github/action.yml @@ -14,7 +14,7 @@ inputs: default: 'false' opentaint-version: description: 'OpenTaint version selector: latest, v, v., or exact v..' - default: 'v2' + default: 'v0' rules-path: description: 'Paths to rules directories (comma-separated)' default: 'builtin'