Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
| datasource  | package                                                       | from   | to          |
| ----------- | ------------------------------------------------------------- | ------ | ----------- |
| github-tags | actions/setup-java                                            | v3     | v4          |
| github-tags | gradle/gradle-build-action                                    | v2     | v3          |
| github-tags | peaceiris/actions-gh-pages                                    | v3     | v4          |
| maven       | io.kotest.extensions:kotest-assertions-arrow                  | 1.4.0  | 2.0.0       |
| maven       | io.kotest.multiplatform:io.kotest.multiplatform.gradle.plugin | 5.9.0  | 6.0.0-LOCAL |
| maven       | org.jetbrains.dokka:org.jetbrains.dokka.gradle.plugin         | 1.9.20 | 2.0.0       |
| maven       | org.jetbrains.dokka:dokka-core                                | 1.9.20 | 2.0.0       |
  • Loading branch information
renovate[bot] authored Dec 23, 2024
1 parent 9d31259 commit 5ca587f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
java-version: 11

- name: Build
uses: gradle/gradle-build-action@v2
uses: gradle/gradle-build-action@v3
with:
arguments: build --scan --full-stacktrace

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/githubpages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run: ./gradlew -Pversion=${{ github.event.release.tag_name }} dokkaHtml

- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
java-version: 11

- name: assemble
uses: gradle/gradle-build-action@v2
uses: gradle/gradle-build-action@v3
with:
arguments: assemble -Pversion=${{ inputs.version }}

Expand All @@ -44,6 +44,6 @@ jobs:
path: '**/build/reports/**'

- name: Publish final version
uses: gradle/gradle-build-action@v2
uses: gradle/gradle-build-action@v3
with:
arguments: -Pversion=${{ inputs.version }} publishAllPublicationsToMavenCentralRepository
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
fetch-depth: 0

- name: Set up Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 11

- name: Build
uses: gradle/gradle-build-action@v2
uses: gradle/gradle-build-action@v3
with:
arguments: build
6 changes: 3 additions & 3 deletions libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[versions]
arrow = "2.0.0-alpha.1"
dokka = "1.9.20"
dokka = "2.0.0"
kotlin = "2.0.0-RC3"
kotest = "5.9.0"
kotest = "6.0.0-LOCAL"
kover = "0.8.0"
detekt = "1.23.5"
kotest-arrow="1.4.0"
kotest-arrow="2.0.0"
kotlinx-json="1.6.3"
kotlinx-knit="0.5.0"
publish="0.28.0"
Expand Down

0 comments on commit 5ca587f

Please sign in to comment.