Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/automated-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,15 @@ on:
description: "Integrate into SQS"
type: boolean
default: true
bump-version:
description: "Create PR to bump the next iteration version"
type: boolean
default: true

jobs:
release:
name: Release
uses: SonarSource/release-github-actions/.github/workflows/automated-release.yml@v1
uses: SonarSource/release-github-actions/.github/workflows/automated-release.yml@tt/bump-version-command
permissions:
statuses: read
id-token: write
Expand All @@ -55,6 +59,7 @@ jobs:
project-name: "SonarJava Symbolic Execution"
plugin-name: "java-symbolic-execution"
jira-project-key: "JAVASE"
runner-environment: "github-ubuntu-latest-s"
rule-props-changed: ${{ github.event.inputs.rule-props-changed }}
short-description: ${{ github.event.inputs.short-description }}
new-version: ${{ github.event.inputs.new-version }}
Expand All @@ -69,5 +74,7 @@ jobs:
verbose: ${{ github.event.inputs.verbose == 'true' }}
use-jira-sandbox: ${{ github.event.inputs.dry-run == 'true' }}
is-draft-release: ${{ github.event.inputs.dry-run == 'true' }}
bump-version: true
bump-version: ${{ github.event.inputs.bump-version == 'true' }}
bump-version-normalize: true
# ${VERSION} is provided inside the action.
bump-version-script: mvn versions:set --batch-mode -DgenerateBackupPoms=false -DnewVersion="${VERSION}"
2 changes: 1 addition & 1 deletion its/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.sonarsource.java</groupId>
<artifactId>sonar-java-symbolic-execution</artifactId>
<version>8.20.0-SNAPSHOT</version>
<version>8.21.0-SNAPSHOT</version>
</parent>

<artifactId>its</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion its/ruling/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.sonarsource.java</groupId>
<artifactId>its</artifactId>
<version>8.20.0-SNAPSHOT</version>
<version>8.21.0-SNAPSHOT</version>
</parent>

<artifactId>it-java-ruling</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.sonarsource.java</groupId>
<artifactId>java-se</artifactId>
<version>8.20.0-SNAPSHOT</version>
<version>8.21.0-SNAPSHOT</version>
</parent>

<artifactId>java-symbolic-execution-checks-test-sources</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.sonarsource.java</groupId>
<artifactId>java-se</artifactId>
<version>8.20.0-SNAPSHOT</version>
<version>8.21.0-SNAPSHOT</version>
</parent>

<artifactId>sonar-java-symbolic-execution-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion java-symbolic-execution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.sonarsource.java</groupId>
<artifactId>sonar-java-symbolic-execution</artifactId>
<version>8.20.0-SNAPSHOT</version>
<version>8.21.0-SNAPSHOT</version>
</parent>

<artifactId>java-se</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>org.sonarsource.java</groupId>
<artifactId>sonar-java-symbolic-execution</artifactId>
<version>8.20.0-SNAPSHOT</version>
<version>8.21.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>SonarQube Java :: Symbolic Execution</name>
<description>Symbolic execution analyzer for Java</description>
Expand Down
Loading