Skip to content

Commit 27326da

Browse files
Update all dependencies
| datasource | package | from | to | | -------------- | ------------------------------------------------------------- | ----- | ----------- | | github-tags | actions/checkout | v4 | v6 | | github-tags | actions/setup-java | v4 | v5 | | github-tags | actions/upload-artifact | v4 | v6 | | github-tags | github/codeql-action | v3 | v4 | | gradle-version | gradle | 8.14 | 9.2.1 | | docker | mcr.microsoft.com/devcontainers/java | 1 | 3 | | maven | io.arrow-kt:suspendapp-ktor | 0.5.0 | 2.2.1.1 | | maven | io.arrow-kt:suspendapp | 0.5.0 | 2.2.1.1 | | maven | com.diffplug.spotless:com.diffplug.spotless.gradle.plugin | 7.0.3 | 8.1.0 | | maven | io.kotest.multiplatform:io.kotest.multiplatform.gradle.plugin | 5.9.1 | 6.0.0-LOCAL | | maven | io.kotest:kotest-runner-junit5 | 5.9.1 | 6.0.7 | | maven | io.kotest:kotest-property | 5.9.1 | 6.0.7 | | maven | io.kotest:kotest-framework-engine | 5.9.1 | 6.0.7 | | maven | io.kotest:kotest-assertions-core | 5.9.1 | 6.0.7 | | maven | com.zaxxer:HikariCP | 6.3.0 | 7.0.2 |
1 parent de5e799 commit 27326da

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Java",
3-
"image": "mcr.microsoft.com/devcontainers/java:1-21",
3+
"image": "mcr.microsoft.com/devcontainers/java:3-21",
44
"features": {
55
"ghcr.io/devcontainers/features/java:1": {
66
"version": "none",

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111

1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0
1717

1818
- name: Set up Java
19-
uses: actions/setup-java@v4
19+
uses: actions/setup-java@v5
2020
with:
2121
distribution: 'zulu'
2222
java-version: 19
@@ -28,13 +28,13 @@ jobs:
2828

2929
- name: Upload reports
3030
if: always()
31-
uses: actions/upload-artifact@v4
31+
uses: actions/upload-artifact@v6
3232
with:
3333
name: 'reports-${{ matrix.os }}'
3434
path: '**/build/reports/**'
3535

3636
- name: Upload Code Scanning code analysis report
3737
if: ${{ hashFiles('build/reports/detekt/main.sarif') != '' }}
38-
uses: github/codeql-action/upload-sarif@v3
38+
uses: github/codeql-action/upload-sarif@v4
3939
with:
4040
sarif_file: 'build/reports/detekt/main.sarif'

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ arrow = "2.1.1"
33
cohort = "2.7.1"
44
coroutines = "1.10.2"
55
detekt = "1.23.8"
6-
hikari = "6.3.0"
6+
hikari = "7.0.2"
77
kjwt = "1.0.0"
8-
kotest = "5.9.1"
8+
kotest = "6.0.7"
99
kotest-arrow = "2.0.0"
1010
kotest-testcontainers = "2.0.2"
1111
kotlin = "2.1.20"
@@ -14,9 +14,9 @@ ktor = "3.1.3"
1414
logback = "1.5.18"
1515
postgresql = "42.7.5"
1616
slugify = "3.0.7"
17-
spotless = "7.0.3"
17+
spotless = "8.1.0"
1818
sqldelight = "2.0.2"
19-
suspendapp = "0.5.0"
19+
suspendapp = "2.2.1.1"
2020
testcontainers = "1.21.0"
2121
version-catalog-update = "1.0.0"
2222

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)