Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spring Boot 3 Support #481

Open
wants to merge 37 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
ef5903c
Spring Boot 3 Support
joshua-schnabel Jan 30, 2023
85e3985
Create renovate.json
joshua-schnabel Mar 18, 2023
bdb8740
Update renovate.json
joshua-schnabel Mar 18, 2023
0c12f44
chore(deps): update actions/cache action to v2.1.8
renovate[bot] Mar 18, 2023
126ea58
chore(deps): update dependency org.apache.maven.plugins:maven-failsaf…
renovate[bot] Mar 18, 2023
dc021b2
Merge pull request #1 from joshua-schnabel/renovate/actions-cache-2.x
joshua-schnabel Mar 18, 2023
d88137b
Merge pull request #2 from joshua-schnabel/renovate/org.apache.maven.…
joshua-schnabel Mar 18, 2023
65cb28c
chore(deps): bump actions/setup-java from 2 to 3
dependabot[bot] Mar 18, 2023
481987a
chore(deps): bump maven-jar-plugin from 3.2.2 to 3.3.0
dependabot[bot] Mar 18, 2023
5f62458
chore(deps): bump actions/cache from 2.1.8 to 3.3.1
dependabot[bot] Mar 18, 2023
3fb52e3
chore(deps): bump s4u/maven-settings-action from 2.5.0 to 2.8.0
dependabot[bot] Mar 18, 2023
c8955c3
chore(deps): bump maven-compiler-plugin from 3.10.1 to 3.11.0
dependabot[bot] Mar 18, 2023
42063a9
chore(deps): bump peaceiris/actions-gh-pages from 3.8.0 to 3.9.2
dependabot[bot] Mar 18, 2023
b5527f4
chore(deps): bump slf4j.version from 2.0.6 to 2.0.7
dependabot[bot] Mar 18, 2023
b1fd102
chore(deps): bump crazy-max/ghaction-import-gpg from 3.1.0 to 5.2.0
dependabot[bot] Mar 18, 2023
ed215cb
chore(deps): bump lombok from 1.18.24 to 1.18.26
dependabot[bot] Mar 18, 2023
05b3947
chore(deps): bump nexus-staging-maven-plugin from 1.6.8 to 1.6.13
dependabot[bot] Mar 18, 2023
6d776fe
chore(deps): bump impsort-maven-plugin from 1.6.2 to 1.8.0
dependabot[bot] Mar 18, 2023
eaee6af
chore(deps): bump maven-javadoc-plugin from 3.3.1 to 3.5.0
dependabot[bot] Mar 18, 2023
96f3f7e
chore(deps): bump maven-surefire-plugin from 3.0.0-M5 to 3.0.0
dependabot[bot] Mar 18, 2023
eedf0f0
chore(deps): bump jacoco-maven-plugin from 0.8.7 to 0.8.8
dependabot[bot] Mar 18, 2023
ed07fd2
chore(deps): bump maven-clean-plugin from 3.1.0 to 3.2.0
dependabot[bot] Mar 18, 2023
f244408
Merge pull request #3 from joshua-schnabel/dependabot/github_actions/…
joshua-schnabel Mar 18, 2023
e048f43
Merge pull request #4 from joshua-schnabel/dependabot/maven/org.apach…
joshua-schnabel Mar 18, 2023
3a46ce5
Merge pull request #5 from joshua-schnabel/dependabot/github_actions/…
joshua-schnabel Mar 18, 2023
590f5c0
Merge pull request #6 from joshua-schnabel/dependabot/github_actions/…
joshua-schnabel Mar 18, 2023
8d35814
Merge pull request #7 from joshua-schnabel/dependabot/maven/org.apach…
joshua-schnabel Mar 18, 2023
41e982a
Merge pull request #8 from joshua-schnabel/dependabot/github_actions/…
joshua-schnabel Mar 18, 2023
3b37d49
Merge pull request #9 from joshua-schnabel/dependabot/maven/slf4j.ver…
joshua-schnabel Mar 18, 2023
f0ded2d
Merge pull request #10 from joshua-schnabel/dependabot/github_actions…
joshua-schnabel Mar 18, 2023
674b6d4
Merge pull request #11 from joshua-schnabel/dependabot/maven/org.proj…
joshua-schnabel Mar 18, 2023
bb4c08f
Merge pull request #12 from joshua-schnabel/dependabot/maven/org.sona…
joshua-schnabel Mar 18, 2023
6033feb
Merge pull request #13 from joshua-schnabel/dependabot/maven/net.reve…
joshua-schnabel Mar 18, 2023
a534b2f
Merge pull request #14 from joshua-schnabel/dependabot/maven/org.apac…
joshua-schnabel Mar 18, 2023
6d2fcf3
Merge pull request #15 from joshua-schnabel/dependabot/maven/org.apac…
joshua-schnabel Mar 18, 2023
79dc474
Merge pull request #16 from joshua-schnabel/dependabot/maven/org.jaco…
joshua-schnabel Mar 18, 2023
fa205a5
Merge pull request #17 from joshua-schnabel/dependabot/maven/org.apac…
joshua-schnabel Mar 18, 2023
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
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

- name: Set up JDK 11
# https://github.com/actions/setup-java
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
cache: 'maven'
check-latest: true
Expand All @@ -29,21 +29,21 @@ jobs:

- name: Prepare Sonar cache
# https://github.com/actions/cache
uses: actions/cache@v2.1.7
uses: actions/cache@v3.3.1
with:
path: ~/.sonar/cache
key: sonar

- name: Prepare Maven settings
# https://github.com/s4u/maven-settings-action
uses: s4u/maven-settings-action@v2.5.0
uses: s4u/maven-settings-action@v2.8.0
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
with:
servers: '[{"id": "ossrh", "username": "${{ secrets.OSSRH_USERNAME }}", "password": "${{ secrets.OSSRH_PASSWORD }}"}]'

- name: Prepare GPG environment
# https://github.com/crazy-max/ghaction-import-gpg
uses: crazy-max/ghaction-import-gpg@v3.1.0
uses: crazy-max/ghaction-import-gpg@v5.2.0
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
with:
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:

- name: Publish main documentation
# https://github.com/peaceiris/actions-gh-pages
uses: peaceiris/actions-gh-pages@v3.8.0
uses: peaceiris/actions-gh-pages@v3.9.2
if: github.ref == 'refs/heads/main'
with:
cname: spring-hateoas-siren.ingogriebsch.de
Expand All @@ -97,7 +97,7 @@ jobs:

- name: Publish tags documentation
# https://github.com/peaceiris/actions-gh-pages
uses: peaceiris/actions-gh-pages@v3.8.0
uses: peaceiris/actions-gh-pages@v3.9.2
if: startsWith(github.ref, 'refs/tags/')
with:
cname: spring-hateoas-siren.ingogriebsch.de
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nextgen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- name: Set up JDK 17
# https://github.com/actions/setup-java
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
cache: 'maven'
check-latest: true
Expand Down
Loading