Skip to content

Commit

Permalink
Corrected after review
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita-Smirnov-Exactpro committed May 15, 2024
1 parent aea03b5 commit 5d3312f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ jobs:
docker-username: ${{ github.actor }}
version: ${{ needs.versions.outputs.version }}
versionNumber: ${{ needs.versions.outputs.version }}
dockerContext: '.'
gradleParameters: '["clean", "build", "dockerPrepare"]'
secrets:
docker-password: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/dev-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ jobs:
docker-username: ${{ github.actor }}
version: ${{ needs.app-version.outputs.version }}
versionNumber: ${{ needs.app-version.outputs.versionNumber }}
dockerContext: '.'
gradleParameters: ${{ format('["clean", "build", "dockerPrepare", "-Pversion_suffix={0}"]', needs.app-version.outputs.versionSuffix) }}
secrets:
docker-password: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/dev-release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ jobs:
docker-username: ${{ github.actor }}
version: ${{ needs.app-version.outputs.version }}-dev
versionNumber: ${{ needs.app-version.outputs.version }}
dockerContext: '.'
gradleParameters: '["clean", "build", "dockerPrepare"]'
secrets:
docker-password: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ spec:
+ Updated cradle api: `5.3.0-dev`
+ Updated common: `5.11.0-dev`
+ Updated micrometer-bom: `1.12.5`
+ Updated jetty-bom: `11.0.20`

## 2.7.0

Expand Down
3 changes: 1 addition & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies {
exclude(group = "com.exactpro.th2", module = "cradle-cassandra")
}

implementation(platform("org.eclipse.jetty:jetty-bom:11.0.15")) {
implementation(platform("org.eclipse.jetty:jetty-bom:11.0.20")) {
because("vulnerabilities in version 11.0.13. Can be removed after updating Javalin and Kotlin")
}

Expand Down Expand Up @@ -75,6 +75,5 @@ dependencies {
}

application {
applicationName = "service"
mainClass.set("com.exactpro.th2.lwdataprovider.MainKt")
}
2 changes: 1 addition & 1 deletion grpc/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def make_packages(root_dir):
license='Apache License 2.0',
python_requires='>=3.7',
install_requires=[
'th2-grpc-common==4.5.0.dev0',
'th2-grpc-common==4.5.0.rc1',
'mypy-protobuf==3.4'
],
packages=packages,
Expand Down

0 comments on commit 5d3312f

Please sign in to comment.