From 58cf33cee78e5f1a36ea16a1640172413e4f350b Mon Sep 17 00:00:00 2001 From: Aleksandr Misonizhnik Date: Thu, 19 Mar 2026 21:14:43 +0300 Subject: [PATCH 1/2] fix(github): Update default opentaint-version from v2 to v0 --- github/README.md | 24 ++++++++++++------------ github/action.yml | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/github/README.md b/github/README.md index d15662d13..62b9b6185 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@v0 ``` @@ -66,7 +66,7 @@ jobs: java-version: '21' - name: Run OpenTaint code analysis - uses: seqra/opentaint/github@v2 + uses: seqra/opentaint/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@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' From 1064ef4a4acdf6fc64ed6407935e49ad6b35503b Mon Sep 17 00:00:00 2001 From: Aleksandr Misonizhnik Date: Thu, 19 Mar 2026 21:18:02 +0300 Subject: [PATCH 2/2] fix(github): Use correct github/v0 tag in README action references --- github/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/github/README.md b/github/README.md index 62b9b6185..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@v0 + uses: seqra/opentaint/github@github/v0 ``` @@ -66,7 +66,7 @@ jobs: java-version: '21' - name: Run OpenTaint code analysis - uses: seqra/opentaint/github@v0 + 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@v0 + uses: seqra/opentaint/github@github/v0 with: # Relative path under $GITHUB_WORKSPACE to the root of the analyzed project project-root: '.'