Skip to content

Commit

Permalink
locally bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkosrc committed May 17, 2024
1 parent 83ae2cc commit 4ff0dfa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Create new branch
run: |
git checkout -b withUpdatedDependencies
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
Expand Down
19 changes: 9 additions & 10 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
[versions]
org-jetbrains-kotlin = "1.9.20"
org-springframework-boot = "3.2.2"
org-springframework-boot = "3.2.5"

[libraries]
com-ninja-squad-springmockk = "com.ninja-squad:springmockk:4.0.2"
io-mockk = "io.mockk:mockk:1.13.9"
io-mockk = "io.mockk:mockk:1.13.11"
kotlin-build-tools-impl = { module = "org.jetbrains.kotlin:kotlin-build-tools-impl", version.ref = "org-jetbrains-kotlin" }
kotlin-compiler-embeddable = { module = "org.jetbrains.kotlin:kotlin-compiler-embeddable", version.ref = "org-jetbrains-kotlin" }
kotlin-klib-commonizer-embeddable = { module = "org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable", version.ref = "org-jetbrains-kotlin" }
kotlin-reflect = { module = "org.jetbrains.kotlin:kotlin-reflect", version.ref = "org-jetbrains-kotlin" }
kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "org-jetbrains-kotlin" }
kotlin-stdlib = "org.jetbrains.kotlin:kotlin-stdlib:1.9.24"
microutils-kotlin-logging = "io.github.microutils:kotlin-logging:3.0.5"
org-apache-logging-log4j-log4j-core = "org.apache.logging.log4j:log4j-core:2.17.1"
org-apache-logging-log4j-log4j-core = "org.apache.logging.log4j:log4j-core:2.23.1"
org-jetbrains-annotations = "org.jetbrains:annotations:13.0"
org-junit-jupiter-junit-jupiter = "org.junit.jupiter:junit-jupiter:5.10.1"
org-junit-platform-junit-platform-launcher = "org.junit.platform:junit-platform-launcher:1.10.1"
org-junit-jupiter-junit-jupiter = "org.junit.jupiter:junit-jupiter:5.11.0-M2"
spring-boot-starter = { module = "org.springframework.boot:spring-boot-starter", version.ref = "org-springframework-boot" }
#testing
spring-boot-starter-test = { module = "org.springframework.boot:spring-boot-starter-test", version.ref = "org-springframework-boot" }
spring-boot-starter-web = { module = "org.springframework.boot:spring-boot-starter-web", version.ref = "org-springframework-boot" }

[plugins]
ben-manes-versions = "com.github.ben-manes.versions:0.51.0"
kotlin-jvm = "org.jetbrains.kotlin.jvm:1.9.20"
kotlin-spring = "org.jetbrains.kotlin.plugin.spring:1.9.20"
kotlin-jvm = "org.jetbrains.kotlin.jvm:1.9.24"
kotlin-spring = "org.jetbrains.kotlin.plugin.spring:1.9.24"
littlerobots-version-catalog-update = "nl.littlerobots.version-catalog-update:0.8.4"
spring-dependency-management = "io.spring.dependency-management:1.1.4"
springframework-boot = "org.springframework.boot:3.2.2"
spring-dependency-management = "io.spring.dependency-management:1.1.5"
springframework-boot = "org.springframework.boot:3.2.5"

0 comments on commit 4ff0dfa

Please sign in to comment.