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

Update all dependencies #161

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/generate-alpha-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fetch-depth: 0

- name: Set up Java
uses: actions/setup-java@v3.9.0
uses: actions/setup-java@v3.13.0
with:
distribution: 'zulu'
java-version: 11
Expand All @@ -45,7 +45,7 @@ jobs:
token: ${{ secrets.TOKEN_GITHUB_ACTION }}

- name: Set up Java
uses: actions/setup-java@v3.9.0
uses: actions/setup-java@v3.13.0
with:
distribution: 'zulu'
java-version: 11
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/generate-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
fetch-depth: 0

- name: Set up Java
uses: actions/setup-java@v3.9.0
uses: actions/setup-java@v3.13.0
with:
distribution: 'zulu'
java-version: 11
Expand All @@ -64,7 +64,7 @@ jobs:
token: ${{ secrets.TOKEN_GITHUB_ACTION }}

- name: Set up Java
uses: actions/setup-java@v3.9.0
uses: actions/setup-java@v3.13.0
with:
distribution: 'zulu'
java-version: 11
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.6.0
with:
fetch-depth: 0

Expand All @@ -29,7 +29,7 @@ jobs:
xcode-version: '13.4.1'

- name: Set up Java
uses: actions/setup-java@v3.9.0
uses: actions/setup-java@v3.13.0
with:
distribution: 'zulu'
java-version: 11
Expand All @@ -41,7 +41,7 @@ jobs:

- name: Upload reports
if: always()
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
name: 'reports-${{ matrix.os }}'
path: '**/build/reports/**'
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:

steps:
- name: Checkout the repo
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.6.0
with:
fetch-depth: 0

- name: Set up Java
uses: actions/setup-java@v3.9.0
uses: actions/setup-java@v3.13.0
with:
distribution: 'zulu'
java-version: 11
Expand All @@ -52,7 +52,7 @@ jobs:
arguments: build --scan --full-stacktrace

- name: Upload reports
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
name: 'reports-${{ matrix.os }}'
path: '**/build/reports/**'
Expand All @@ -78,7 +78,7 @@ jobs:
fetch-depth: 0

- name: Set up Java
uses: actions/setup-java@v3.9.0
uses: actions/setup-java@v3.13.0
with:
distribution: 'zulu'
java-version: 11
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
token: ${{ secrets.TOKEN_GITHUB_ACTION }}

- name: Set up Java
uses: actions/setup-java@v3.9.0
uses: actions/setup-java@v3.13.0
with:
distribution: 'temurin'
java-version: 11
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
18 changes: 9 additions & 9 deletions libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[versions]
arrow = "1.1.3"
arrow = "1.2.4"
arrowGradleConfig = "0.11.0"
coroutines = "1.6.4"
dokka = "1.7.20"
kotest = "5.5.4"
kotest-plugin = "5.5.4"
kotlin = "1.7.22"
kotlinBinaryCompatibilityValidator = "0.12.1"
kover = "0.6.1"
coroutines = "1.8.1"
dokka = "1.9.20"
kotest = "5.9.1"
kotest-plugin = "5.9.1"
kotlin = "1.9.24"
kotlinBinaryCompatibilityValidator = "0.14.0"
kover = "0.8.0"
nexusPublish = "1.1.0"
detekt = "1.22.0"
detekt = "1.23.6"

[libraries]
arrow-core = { module = "io.arrow-kt:arrow-core", version.ref = "arrow" }
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ enableFeaturePreview("VERSION_CATALOGS")
rootProject.name = "Saga"

plugins {
id("com.gradle.enterprise") version "3.12"
id("com.gradle.enterprise") version "3.17.4"
}

dependencyResolutionManagement {
Expand Down
Loading