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 #2709

Merged
merged 2 commits into from
May 25, 2022
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/generate-alpha-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
fetch-depth: 0

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

- name: Gradle build
uses: gradle/[email protected].5
uses: gradle/[email protected].6
with:
arguments: --full-stacktrace build "-Psemver.stage=alpha"

Expand All @@ -46,13 +46,13 @@ jobs:
token: ${{ secrets.TOKEN_GITHUB_ACTION }}

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

- name: Generate Tag
uses: gradle/[email protected].5
uses: gradle/[email protected].6
with:
arguments: --full-stacktrace createSemverTag "-Psemver.stage=alpha"

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 @@ -40,13 +40,13 @@ jobs:
fetch-depth: 0

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

- name: Gradle build
uses: gradle/[email protected].5
uses: gradle/[email protected].6
with:
arguments: --full-stacktrace build "-Psemver.scope=${{ github.event.inputs.scope }}" "-Psemver.stage=${{ github.event.inputs.stage }}"

Expand All @@ -67,13 +67,13 @@ jobs:
token: ${{ secrets.TOKEN_GITHUB_ACTION }}

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

- name: Generate Tag
uses: gradle/[email protected].5
uses: gradle/[email protected].6
with:
arguments: --full-stacktrace createSemverTag "-Psemver.scope=${{ github.event.inputs.scope }}" "-Psemver.stage=${{ github.event.inputs.stage }}"

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ jobs:
fetch-depth: 0

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

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

Expand All @@ -53,13 +53,13 @@ jobs:
run: echo "::set-output name=arrow::$(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/**'

- name: Publish alpha/beta/rc version
uses: gradle/[email protected].5
uses: gradle/[email protected].6
if: |
contains(steps.version.outputs.arrow, 'alpha') ||
contains(steps.version.outputs.arrow, 'beta') ||
Expand All @@ -68,7 +68,7 @@ jobs:
arguments: --full-stacktrace publishToSonatype closeAndReleaseSonatypeStagingRepository

- name: Publish final version
uses: gradle/[email protected].5
uses: gradle/[email protected].6
if: |
!contains(steps.version.outputs.arrow, 'alpha') &&
!contains(steps.version.outputs.arrow, 'beta') &&
Expand All @@ -85,7 +85,7 @@ jobs:
bundle install --gemfile Gemfile

- name: Create API doc
uses: gradle/[email protected].5
uses: gradle/[email protected].6
with:
arguments: --full-stacktrace dokkaGfm

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,30 +15,30 @@ jobs:

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

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

- name: build
uses: gradle/[email protected].5
uses: gradle/[email protected].6
if: matrix.os != 'windows-latest'
with:
arguments: --full-stacktrace build

- name: mingwX64Test
uses: gradle/[email protected].5
uses: gradle/[email protected].6
if: matrix.os == 'windows-latest'
with:
arguments: --full-stacktrace mingwX64Test

- 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 @@ -56,13 +56,13 @@ jobs:
fetch-depth: 0

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

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

Expand Down
2 changes: 1 addition & 1 deletion arrow-site/docs/_includes/_head.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<!-- Site main css -->
<link rel="stylesheet" type="text/css" href="/css/home-styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.9.2/lottie.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.9.4/lottie.min.js" type="text/javascript"></script>

<!-- Highlight -->
<script src="/js/highlight.pack.js"></script>
Expand Down
14 changes: 7 additions & 7 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
[versions]
animalSniffer = "1.5.4"
arrowGradleConfig = "0.10.1"
arrowGradleConfig = "0.10.2"
assertj = "3.22.0"
coroutines = "1.6.1"
classgraph = "4.8.146"
dokka = "1.6.20"
classgraph = "4.8.147"
dokka = "1.6.21"
jUnit = "4.13.2"
jUnitJupiter = "5.8.2"
jUnitVintage = "5.8.2"
kotest = "5.2.3"
kotestGradle = "5.2.3"
kotest = "5.3.0"
kotestGradle = "5.3.0"
kotlin = "1.6.21"
kotlinBinaryCompatibilityValidator = "0.9.0"
kotlinBinaryCompatibilityValidator = "0.10.0"
kotlinCompileTesting = "1.4.8"
knit = "0.4.0"
kspVersion = "1.6.21-1.0.5"
kotlinxSerialization = "1.3.2"
kotlinxSerialization = "1.3.3"
mockWebServer = "4.9.3"
retrofit = "2.9.0"
retrofitKotlinxSerialization = "0.8.0"
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pluginManagement {
}

plugins {
id("com.gradle.enterprise") version "3.10"
id("com.gradle.enterprise") version "3.10.1"
}

dependencyResolutionManagement {
Expand Down