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/checkout                                                                    | v3      | v4     |
| github-tags    | actions/checkout                                                                    | v3.5.2  | v4.1.6 |
| github-tags    | actions/setup-java                                                                  | v3.11.0 | v4.2.1 |
| github-tags    | actions/upload-artifact                                                             | v3.1.2  | v4.3.3 |
| github-runners | macos                                                                               | 11      | 14     |
| github-tags    | stefanzweifel/git-auto-commit-action                                                | v4.16.0 | v5.0.1 |
| maven          | org.jetbrains.kotlin.multiplatform:org.jetbrains.kotlin.multiplatform.gradle.plugin | 1.8.21  | 2.0.0  |
| maven          | org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin                     | 1.8.21  | 2.0.0  |
  • Loading branch information
renovate[bot] committed May 21, 2024
1 parent 2918f2c commit 75344ff
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/generate-alpha-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Java
uses: actions/setup-java@v3.11.0
uses: actions/setup-java@v4.2.1
with:
distribution: 'adopt'
java-version: '15'
Expand All @@ -38,13 +38,13 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.TOKEN_GITHUB_ACTION }}

- name: Set up Java
uses: actions/setup-java@v3.11.0
uses: actions/setup-java@v4.2.1
with:
distribution: 'adopt'
java-version: '15'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/generate-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Java
uses: actions/setup-java@v3.11.0
uses: actions/setup-java@v4.2.1
with:
distribution: 'adopt'
java-version: '15'
Expand All @@ -58,13 +58,13 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.TOKEN_GITHUB_ACTION }}

- name: Set up Java
uses: actions/setup-java@v3.11.0
uses: actions/setup-java@v4.2.1
with:
distribution: 'adopt'
java-version: '15'
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:
integrations-version: ${{ steps.get-integrations-version.outputs.integrations-version }}

steps:
- uses: actions/checkout@v3.5.2
- uses: actions/checkout@v4.1.6
with:
fetch-depth: 0

- uses: actions/setup-java@v3.11.0
- uses: actions/setup-java@v4.2.1
with:
distribution: 'adopt'
java-version: '15'
Expand All @@ -51,7 +51,7 @@ jobs:
echo "::set-output name=integrations-version::$(head -n 1 build/semver/version.txt)"
- name: Upload reports
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.3.3
with:
name: 'reports-${{ matrix.os }}'
path: '**/build/reports/**'
Expand All @@ -64,12 +64,12 @@ jobs:
env:
JAVA_OPTS: -Xms512m -Xmx1024m

runs-on: macos-11
runs-on: macos-14

steps:
- uses: actions/checkout@v3.5.2
- uses: actions/checkout@v4.1.6

- uses: actions/setup-java@v3.11.0
- uses: actions/setup-java@v4.2.1
with:
distribution: 'adopt'
java-version: '15'
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
timeout-minutes: 20

steps:
- uses: actions/checkout@v3.5.2
- uses: actions/checkout@v4.1.6
with:
fetch-depth: 0

- uses: actions/setup-java@v3.11.0
- uses: actions/setup-java@v4.2.1
with:
distribution: 'adopt'
java-version: '15'
Expand All @@ -29,7 +29,7 @@ jobs:
arguments: build --scan --stacktrace

- name: Upload reports
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.3.3
with:
name: 'reports-${{ matrix.os }}'
path: '**/build/reports/**'
Expand All @@ -42,7 +42,7 @@ jobs:
timeout-minutes: 20

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -55,7 +55,7 @@ jobs:
run: ./gradlew --stop

- name: "Commit new API files"
uses: stefanzweifel/git-auto-commit-action@v4.16.0
uses: stefanzweifel/git-auto-commit-action@v5.0.1
with:
commit_message: Update API files
file_pattern: /**/api/*.api
2 changes: 1 addition & 1 deletion gradle/projects.libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
arrow = "1.1.5"
dokka = "1.8.10"
arrowGradleConfig = "0.11.0"
kotlin = "1.8.21"
kotlin = "2.0.0"
kotest = "5.6.2"
kotlinBinaryCompatibilityValidator = "0.13.2"
detekt = "1.23.0"
Expand Down

0 comments on commit 75344ff

Please sign in to comment.