Skip to content

Commit 32f2709

Browse files
authored
Merge branch 'main' into v9.x
2 parents dd6df54 + 2e58aef commit 32f2709

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ jobs:
2525
test:
2626
# runs-on: self-hosted
2727
runs-on: ubuntu-latest
28-
env:
29-
# define Java options for both official sbt and sbt-extras
30-
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
31-
JVM_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
3228
steps:
3329
- name: Env
3430
run: |
@@ -54,6 +50,11 @@ jobs:
5450
lint:
5551
runs-on: ubuntu-latest
5652
steps:
53+
- name: Env
54+
run: |
55+
echo "JFROG_USER=${{ secrets.JFROG_USER }}" >> $GITHUB_ENV
56+
echo "JFROG_PASSWORD=${{ secrets.JFROG_PASSWORD }}" >> $GITHUB_ENV
57+
echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> $GITHUB_ENV
5758
- name: Checkout
5859
uses: actions/checkout@v3
5960
- name: Set up JDK 17

.github/workflows/release.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@ jobs:
2222
release:
2323
# runs-on: self-hosted
2424
runs-on: ubuntu-latest
25-
env:
26-
# define Java options for both official sbt and sbt-extras
27-
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
28-
JVM_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
2925
steps:
3026
- name: Env
3127
run: |

project/Versions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ object Versions {
2828

2929
val testContainers = "1.18.0"
3030

31-
val genericPersistence = "0.8-SNAPSHOT"
31+
val genericPersistence = "0.8.0"
3232

3333
val gson = "2.8.0"
3434

0 commit comments

Comments
 (0)