Skip to content

Commit dfd353a

Browse files
authored
Merge pull request #188 from trivago/1.12.0
1.12.0
2 parents b6a907c + e5a430f commit dfd353a

File tree

17 files changed

+718
-114
lines changed

17 files changed

+718
-114
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3
15-
- name: Set up JDK 11
16-
uses: actions/setup-java@v3
14+
- uses: actions/checkout@v4
15+
- name: Set up JDK 17
16+
uses: actions/setup-java@v4
1717
with:
1818
distribution: 'temurin'
19-
java-version: '11'
19+
java-version: '17'
2020
cache: maven
2121

2222
- name: Set up Apache Maven Central
23-
uses: actions/setup-java@v3
23+
uses: actions/setup-java@v4
2424
with:
2525
distribution: 'temurin'
26-
java-version: '11'
26+
java-version: '17'
2727
server-id: ossrh
2828
server-username: MAVEN_USERNAME
2929
server-password: MAVEN_PASSWORD
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Publish to Apache Maven Central
3434
working-directory: plugin-code
35-
run: mvn deploy -B -Prelease
35+
run: ./mvnw deploy -B -Prelease -no-transfer-progress
3636
env:
3737
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
3838
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}

.github/workflows/unit-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v3
16-
- name: Set up JDK 11
17-
uses: actions/setup-java@v3
15+
- uses: actions/checkout@v4
16+
- name: Set up JDK 17
17+
uses: actions/setup-java@v4
1818
with:
19-
java-version: '11'
19+
java-version: '17'
2020
distribution: 'temurin'
2121
cache: maven
2222
- name: Test with Maven
2323
working-directory: plugin-code
24-
run: mvn test
24+
run: ./mvnw test -no-transfer-progress

0 commit comments

Comments
 (0)