Compare commits

...

3 commits

Author SHA1 Message Date
2341f4a88e fix(deps): update dependencies (major and minor)
Some checks failed
CI / test-build (pull_request) Failing after 2s
CI / prettier (pull_request) Successful in 58s
CI / eslint (pull_request) Successful in 1m13s
CI / Checkstyle Main (pull_request) Successful in 3m29s
2025-03-12 16:03:06 +00:00
1ad34b1ae1 Merge pull request 'chore(deps): update actions/cache action to v4' (#63) from renovate/actions-cache-4.x into main
All checks were successful
Release / Release (push) Successful in 1m8s
Reviewed-on: #63
Reviewed-by: Jan Gleytenhoover <jan@kjan.email>
2025-03-12 15:43:04 +00:00
79b83fc4c8 chore(deps): update actions/cache action to v4
All checks were successful
CI / Checkstyle Main (pull_request) Successful in 46s
CI / eslint (pull_request) Successful in 50s
CI / prettier (pull_request) Successful in 1m3s
CI / test-build (pull_request) Successful in 1m9s
2025-03-12 15:03:14 +00:00
2 changed files with 8 additions and 8 deletions

View file

@ -39,7 +39,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install bun - name: Install bun
uses: oven-sh/setup-bun@v2 uses: oven-sh/setup-bun@v2
- uses: actions/cache@v3 - uses: actions/cache@v4
working-directory: ./frontend working-directory: ./frontend
with: with:
path: | path: |
@ -65,7 +65,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install bun - name: Install bun
uses: oven-sh/setup-bun@v2 uses: oven-sh/setup-bun@v2
- uses: actions/cache@v3 - uses: actions/cache@v4
working-directory: ./frontend working-directory: ./frontend
with: with:
path: | path: |
@ -91,7 +91,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install bun - name: Install bun
uses: oven-sh/setup-bun@v2 uses: oven-sh/setup-bun@v2
- uses: actions/cache@v3 - uses: actions/cache@v4
working-directory: ./frontend working-directory: ./frontend
with: with:
path: | path: |
@ -99,7 +99,7 @@ jobs:
key: ${{ runner.os }}-bun- key: ${{ runner.os }}-bun-
restore-keys: | restore-keys: |
${{ runner.os }}-bun- ${{ runner.os }}-bun-
- uses: actions/cache@v3 - uses: actions/cache@v4
working-directory: ./frontend working-directory: ./frontend
with: with:
path: | path: |

View file

@ -39,7 +39,7 @@ repositories {
} }
dependencies { 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-data-jpa")
implementation("org.springframework.boot:spring-boot-starter-web") implementation("org.springframework.boot:spring-boot-starter-web")
compileOnly("org.projectlombok:lombok") compileOnly("org.projectlombok:lombok")
@ -47,10 +47,10 @@ dependencies {
testImplementation("org.springframework.boot:spring-boot-starter-test") testImplementation("org.springframework.boot:spring-boot-starter-test")
testRuntimeOnly("org.junit.platform:junit-platform-launcher") testRuntimeOnly("org.junit.platform:junit-platform-launcher")
implementation("org.springframework.boot:spring-boot-starter-security") 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-resource-server:3.4.3")
implementation("org.springframework.boot:spring-boot-starter-oauth2-client:3.3.3") implementation("org.springframework.boot:spring-boot-starter-oauth2-client:3.4.3")
runtimeOnly("org.postgresql:postgresql") 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> { tasks.withType<Test> {