Skip to content
This repository was archived by the owner on Jun 6, 2024. It is now read-only.

Commit 19bf0eb

Browse files
Update all dependencies
| datasource | package | from | to | | -------------- | ----------------------------------------------------------------------------------------------------------------------- | ------ | ------- | | github-tags | actions/checkout | v3.2.0 | v3.6.0 | | github-tags | actions/setup-java | v3.9.0 | v3.13.0 | | github-tags | actions/upload-artifact | v3.1.1 | v3.1.3 | | gradle-version | gradle | 7.6 | 7.6.4 | | maven | io.gitlab.arturbosch.detekt:io.gitlab.arturbosch.detekt.gradle.plugin | 1.22.0 | 1.23.6 | | maven | org.jetbrains.kotlinx.kover:org.jetbrains.kotlinx.kover.gradle.plugin | 0.6.1 | 0.8.0 | | maven | org.jetbrains.kotlinx.binary-compatibility-validator:org.jetbrains.kotlinx.binary-compatibility-validator.gradle.plugin | 0.12.1 | 0.14.0 | | maven | com.gradle.enterprise:com.gradle.enterprise.gradle.plugin | 3.12 | 3.17.4 | | maven | org.jetbrains.kotlin.multiplatform:org.jetbrains.kotlin.multiplatform.gradle.plugin | 1.7.22 | 1.9.24 | | maven | io.kotest.multiplatform:io.kotest.multiplatform.gradle.plugin | 5.5.4 | 5.9.0 | | maven | io.kotest:kotest-runner-junit5 | 5.5.4 | 5.9.0 | | maven | io.kotest:kotest-property | 5.5.4 | 5.9.0 | | maven | io.kotest:kotest-framework-engine | 5.5.4 | 5.9.0 | | maven | io.kotest:kotest-assertions-core | 5.5.4 | 5.9.0 | | maven | org.jetbrains.dokka:org.jetbrains.dokka.gradle.plugin | 1.7.20 | 1.9.20 | | maven | org.jetbrains.dokka:dokka-core | 1.7.20 | 1.9.20 | | maven | org.jetbrains.kotlinx:kotlinx-coroutines-test | 1.6.4 | 1.8.1 | | maven | org.jetbrains.kotlinx:kotlinx-coroutines-core | 1.6.4 | 1.8.1 | | maven | io.arrow-kt:arrow-fx-coroutines | 1.1.3 | 1.2.4 | | maven | io.arrow-kt:arrow-optics | 1.1.3 | 1.2.4 | | maven | io.arrow-kt:arrow-core | 1.1.3 | 1.2.4 |
1 parent 29ba67c commit 19bf0eb

File tree

8 files changed

+23
-23
lines changed

8 files changed

+23
-23
lines changed

Diff for: .github/workflows/generate-alpha-tag.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fetch-depth: 0
2222

2323
- name: Set up Java
24-
uses: actions/setup-java@v3.9.0
24+
uses: actions/setup-java@v3.13.0
2525
with:
2626
distribution: 'zulu'
2727
java-version: 11
@@ -45,7 +45,7 @@ jobs:
4545
token: ${{ secrets.TOKEN_GITHUB_ACTION }}
4646

4747
- name: Set up Java
48-
uses: actions/setup-java@v3.9.0
48+
uses: actions/setup-java@v3.13.0
4949
with:
5050
distribution: 'zulu'
5151
java-version: 11

Diff for: .github/workflows/generate-tag.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
fetch-depth: 0
4141

4242
- name: Set up Java
43-
uses: actions/setup-java@v3.9.0
43+
uses: actions/setup-java@v3.13.0
4444
with:
4545
distribution: 'zulu'
4646
java-version: 11
@@ -64,7 +64,7 @@ jobs:
6464
token: ${{ secrets.TOKEN_GITHUB_ACTION }}
6565

6666
- name: Set up Java
67-
uses: actions/setup-java@v3.9.0
67+
uses: actions/setup-java@v3.13.0
6868
with:
6969
distribution: 'zulu'
7070
java-version: 11

Diff for: .github/workflows/pr.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v3.2.0
21+
uses: actions/checkout@v3.6.0
2222
with:
2323
fetch-depth: 0
2424

@@ -29,7 +29,7 @@ jobs:
2929
xcode-version: '13.4.1'
3030

3131
- name: Set up Java
32-
uses: actions/setup-java@v3.9.0
32+
uses: actions/setup-java@v3.13.0
3333
with:
3434
distribution: 'zulu'
3535
java-version: 11
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: Upload reports
4343
if: always()
44-
uses: actions/[email protected].1
44+
uses: actions/[email protected].3
4545
with:
4646
name: 'reports-${{ matrix.os }}'
4747
path: '**/build/reports/**'

Diff for: .github/workflows/publish.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030

3131
steps:
3232
- name: Checkout the repo
33-
uses: actions/checkout@v3.2.0
33+
uses: actions/checkout@v3.6.0
3434
with:
3535
fetch-depth: 0
3636

3737
- name: Set up Java
38-
uses: actions/setup-java@v3.9.0
38+
uses: actions/setup-java@v3.13.0
3939
with:
4040
distribution: 'zulu'
4141
java-version: 11
@@ -52,7 +52,7 @@ jobs:
5252
arguments: build --scan --full-stacktrace
5353

5454
- name: Upload reports
55-
uses: actions/[email protected].1
55+
uses: actions/[email protected].3
5656
with:
5757
name: 'reports-${{ matrix.os }}'
5858
path: '**/build/reports/**'
@@ -78,7 +78,7 @@ jobs:
7878
fetch-depth: 0
7979

8080
- name: Set up Java
81-
uses: actions/setup-java@v3.9.0
81+
uses: actions/setup-java@v3.13.0
8282
with:
8383
distribution: 'zulu'
8484
java-version: 11

Diff for: .github/workflows/update-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
token: ${{ secrets.TOKEN_GITHUB_ACTION }}
1717

1818
- name: Set up Java
19-
uses: actions/setup-java@v3.9.0
19+
uses: actions/setup-java@v3.13.0
2020
with:
2121
distribution: 'temurin'
2222
java-version: 11

Diff for: gradle/wrapper/gradle-wrapper.properties

+1-1
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-7.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

Diff for: libs.versions.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[versions]
2-
arrow = "1.1.3"
2+
arrow = "1.2.4"
33
arrowGradleConfig = "0.11.0"
4-
coroutines = "1.6.4"
5-
dokka = "1.7.20"
6-
kotest = "5.5.4"
7-
kotest-plugin = "5.5.4"
8-
kotlin = "1.7.22"
9-
kotlinBinaryCompatibilityValidator = "0.12.1"
10-
kover = "0.6.1"
4+
coroutines = "1.8.1"
5+
dokka = "1.9.20"
6+
kotest = "5.9.0"
7+
kotest-plugin = "5.9.0"
8+
kotlin = "1.9.24"
9+
kotlinBinaryCompatibilityValidator = "0.14.0"
10+
kover = "0.8.0"
1111
nexusPublish = "1.1.0"
12-
detekt = "1.22.0"
12+
detekt = "1.23.6"
1313

1414
[libraries]
1515
arrow-core = { module = "io.arrow-kt:arrow-core", version.ref = "arrow" }

Diff for: settings.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ enableFeaturePreview("VERSION_CATALOGS")
44
rootProject.name = "Saga"
55

66
plugins {
7-
id("com.gradle.enterprise") version "3.12"
7+
id("com.gradle.enterprise") version "3.17.4"
88
}
99

1010
dependencyResolutionManagement {

0 commit comments

Comments
 (0)