Compare commits

...

3 commits

Author SHA1 Message Date
3000a5f693 fix(deps): update dependencies (major and minor)
Some checks failed
CI / prettier (pull_request) Failing after 2s
CI / test-build (pull_request) Failing after 2s
CI / eslint (pull_request) Successful in 1m2s
CI / Checkstyle Main (pull_request) Successful in 2m22s
2025-03-12 18:02:57 +00:00
ba1415e8b0 Merge pull request 'chore(deps): update actions/checkout action to v4' (#64) from renovate/actions-checkout-4.x into main
All checks were successful
Release / Release (push) Successful in 1m10s
Reviewed-on: #64
Reviewed-by: Jan Gleytenhoover <jan@kjan.email>
2025-03-12 17:46:48 +00:00
910895ed82 chore(deps): update actions/checkout action to v4
All checks were successful
CI / eslint (pull_request) Successful in 27s
CI / prettier (pull_request) Successful in 40s
CI / test-build (pull_request) Successful in 1m25s
CI / Checkstyle Main (pull_request) Successful in 2m20s
2025-03-12 16:04:02 +00:00
2 changed files with 5 additions and 5 deletions

View file

@ -10,7 +10,7 @@ jobs:
image: "cimg/openjdk:23.0-node"
steps:
- name: "Checkout"
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Cache Gradle dependencies"
uses: https://github.com/actions/cache@v3
with:

View file

@ -39,7 +39,7 @@ repositories {
}
dependencies {
implementation("com.stripe:stripe-java:20.79.0")
implementation("com.stripe:stripe-java:20.136.0")
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.springframework.boot:spring-boot-starter-web")
compileOnly("org.projectlombok:lombok")
@ -47,10 +47,10 @@ dependencies {
testImplementation("org.springframework.boot:spring-boot-starter-test")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
implementation("org.springframework.boot:spring-boot-starter-security")
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server:3.3.3")
implementation("org.springframework.boot:spring-boot-starter-oauth2-client:3.3.3")
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server:3.4.3")
implementation("org.springframework.boot:spring-boot-starter-oauth2-client:3.4.3")
runtimeOnly("org.postgresql:postgresql")
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0")
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.5")
}
tasks.withType<Test> {