Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into develop
Browse files Browse the repository at this point in the history
# Conflicts:
#	build.gradle
  • Loading branch information
APiankouski committed Sep 19, 2024
2 parents b327ee2 + c56a321 commit 882e3b8
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/manually-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up JDK 11
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
java-version: '21'

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Setup git credentials
uses: oleksiyrudenko/gha-git-credentials@v2
uses: oleksiyrudenko/gha-git-credentials@v2-latest
with:
name: 'reportportal.io'
email: 'support@reportportal.io'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

env:
GH_USER_NAME: github.actor
RELEASE_VERSION: 5.11.3
RELEASE_VERSION: 5.12.0

jobs:
release:
Expand All @@ -20,17 +20,17 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up JDK 11
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
java-version: '21'

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Setup git credentials
uses: oleksiyrudenko/gha-git-credentials@v2
uses: oleksiyrudenko/gha-git-credentials@v2-latest
with:
name: 'reportportal.io'
email: 'support@reportportal.io'
Expand Down
14 changes: 7 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ services:
## ReportPortal services

index:
image: reportportal/service-index:5.11.0
image: reportportal/service-index:5.12.0
container_name: reportportal-index
logging:
<<: *logging
Expand All @@ -138,7 +138,7 @@ services:
restart: always

ui:
image: reportportal/service-ui:5.11.1
image: reportportal/service-ui:5.12.0
container_name: reportportal-ui
environment:
RP_SERVER_PORT: "8080"
Expand All @@ -161,7 +161,7 @@ services:
restart: always

api:
image: reportportal/service-api:5.11.1
image: reportportal/service-api:5.12.0
container_name: reportportal-api
logging:
<<: *logging
Expand Down Expand Up @@ -276,7 +276,7 @@ services:
restart: always

jobs:
image: reportportal/service-jobs:5.11.1
image: reportportal/service-jobs:5.12.0
container_name: reportportal-jobs
logging:
<<: *logging
Expand Down Expand Up @@ -349,7 +349,7 @@ services:
restart: always

analyzer:
image: &analyzer_img reportportal/service-auto-analyzer:5.11.0-r1
image: &analyzer_img reportportal/service-auto-analyzer:5.12.0-r1
container_name: reportportal-analyzer
logging:
<<: *logging
Expand Down Expand Up @@ -401,7 +401,7 @@ services:
restart: always

metrics-gatherer:
image: reportportal/service-metrics-gatherer:5.11.0-r1
image: reportportal/service-metrics-gatherer:5.12.0-r1
container_name: reportportal-metrics-gatherer
logging:
<<: *logging
Expand All @@ -428,7 +428,7 @@ services:
restart: always

migrations:
image: reportportal/migrations:5.11.0
image: reportportal/migrations:5.12.0
container_name: reportportal-migrations
logging:
<<: *logging
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=5.11.4
version=5.12.1
description=Unified Authorization Trap for all ReportPortal's Services
dockerPrepareEnvironment=
dockerJavaOpts=-Xmx512m -XX:+UseG1GC -XX:InitiatingHeapOccupancyPercent=70 -Djava.security.egd=file:/dev/./urandom
Expand Down
2 changes: 1 addition & 1 deletion project-properties.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project.ext {
publishRepo = "https://maven.pkg.github.com/reportportal/service-authorization"
dependencyRepos = ["commons-dao", "commons-rules", "commons-model", "commons-bom"]
releaseMode = project.hasProperty("releaseMode")
scriptsUrl = commonScriptsUrl + (releaseMode ? '5.11.0' : 'develop')
scriptsUrl = commonScriptsUrl + (releaseMode ? '5.12.0' : 'develop')
isDebugMode = System.getProperty("DEBUG", "false") == "true"
}

Expand Down

0 comments on commit 882e3b8

Please sign in to comment.