Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all dependencies - autoclosed #67

Closed
wants to merge 1 commit into from
Closed
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.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fetch-depth: 0

- name: Set up Java
uses: actions/setup-java@v3.1.0
uses: actions/setup-java@v3.3.0
with:
distribution: 'adopt'
java-version: '15'
Expand All @@ -44,7 +44,7 @@ jobs:
token: ${{ secrets.TOKEN_GITHUB_ACTION }}

- name: Set up Java
uses: actions/setup-java@v3.1.0
uses: actions/setup-java@v3.3.0
with:
distribution: 'adopt'
java-version: '15'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/generate-tag.yaml
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.1.0
uses: actions/setup-java@v3.3.0
with:
distribution: 'adopt'
java-version: '15'
Expand All @@ -65,7 +65,7 @@ jobs:
token: ${{ secrets.TOKEN_GITHUB_ACTION }}

- name: Set up Java
uses: actions/setup-java@v3.1.0
uses: actions/setup-java@v3.3.0
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,17 +30,17 @@ jobs:
endpoints-version: ${{ steps.get-endpoints-version.outputs.endpoints-version }}

steps:
- uses: actions/[email protected].0
- uses: actions/[email protected].2
with:
fetch-depth: 0

- uses: actions/setup-java@v3.1.0
- uses: actions/setup-java@v3.3.0
with:
distribution: 'adopt'
java-version: '15'

- name: Build and test with Gradle
uses: gradle/[email protected].5
uses: gradle/[email protected].6
with:
arguments: build --scan --stacktrace

Expand All @@ -51,7 +51,7 @@ jobs:
echo "::set-output name=endpoints-version::$(head -n 1 build/semver/version.txt)"

- name: Upload reports
uses: actions/upload-artifact@v3.0.0
uses: actions/upload-artifact@v3.1.0
with:
name: 'reports-${{ matrix.os }}'
path: '**/build/reports/**'
Expand All @@ -67,9 +67,9 @@ jobs:
runs-on: macos-11

steps:
- uses: actions/[email protected].0
- uses: actions/[email protected].2

- uses: actions/setup-java@v3.1.0
- uses: actions/setup-java@v3.3.0
with:
distribution: 'adopt'
java-version: '15'
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ jobs:
timeout-minutes: 20

steps:
- uses: actions/[email protected].0
- uses: actions/[email protected].2
with:
fetch-depth: 0

- uses: actions/setup-java@v3.1.0
- uses: actions/setup-java@v3.3.0
with:
distribution: 'adopt'
java-version: '15'

- name: Build and test with Gradle
uses: gradle/[email protected].5
uses: gradle/[email protected].6
with:
arguments: build --scan --stacktrace

- name: Upload reports
uses: actions/upload-artifact@v3.0.0
uses: actions/upload-artifact@v3.1.0
with:
name: 'reports-${{ matrix.os }}'
path: '**/build/reports/**'
Expand All @@ -47,15 +47,15 @@ jobs:
fetch-depth: 0

- name: Build
uses: gradle/[email protected].5
uses: gradle/[email protected].6
with:
arguments: apiDump

- name: Stop Gradle daemons
run: ./gradlew --stop

- name: "Commit new API files"
uses: stefanzweifel/[email protected].0
uses: stefanzweifel/[email protected].1
with:
commit_message: Update API files
file_pattern: /**/api/*.api
24 changes: 12 additions & 12 deletions libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
[versions]
kotlin = "1.6.20"
arrow = "1.0.1"
arrowGradleConfig = "0.10.0"
kotlin = "1.6.21"
arrow = "1.1.2"
arrowGradleConfig = "0.10.2"
coroutines = "1.6.1"
kotlinxSerialization = "1.6.20"
dokka = "1.6.10"
kotlinxSerializationJson = "1.3.2"
kotlinxSerialization = "1.6.21"
dokka = "1.6.21"
kotlinxSerializationJson = "1.3.3"
ktor = "1.6.8"
logbackClassic = "1.2.11"
spring = "2.6.6"
spring = "2.7.0"
reactorKotlinExtensions = "1.1.6"
undertow = "2.2.17.Final"
kotest = "5.2.3"
kotestGradle = "5.2.3"
kotest = "5.3.0"
kotestGradle = "5.3.0"
graphQL = "16.2"
kotlinGraphQL = "4.0.0-alpha.17"
http4k = "4.25.8.0"
nettyTransport = "4.1.75.Final"
http4k = "4.25.16.1"
nettyTransport = "4.1.77.Final"
http3 = "4.9.3"
githooks = "0.0.2"
kotlinBinaryCompatibilityValidator = "0.8.0"
kotlinBinaryCompatibilityValidator = "0.10.0"

[libraries]
kotlin-stdlibCommon = { module = "org.jetbrains.kotlin:kotlin-stdlib-common", version.ref = "kotlin" }
Expand Down