Skip to content

Commit 4ea3db4

Browse files
authored
Dependency updates (#6705)
* Dependency updates * update * fix licensee * fix tests * update package lock * use macos-15 (has Java12 by default) * remove unused imports
1 parent 8caf702 commit 4ea3db4

File tree

289 files changed

+2076
-3125
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

289 files changed

+2076
-3125
lines changed

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212

1313
jobs:
1414
benchmarks:
15-
runs-on: macos-14
15+
runs-on: macos-15
1616
if: github.repository == 'apollographql/apollo-kotlin'
1717
steps:
1818
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7

.github/workflows/bump-kotlin-nightlies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
push-kotlin-nightlies-branch:
10-
runs-on: macos-14
10+
runs-on: macos-15
1111
steps:
1212
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7
1313
with:

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
nightly:
10-
runs-on: macos-14
10+
runs-on: macos-15
1111
if: github.repository == 'apollographql/apollo-kotlin'
1212
steps:
1313
- run: |

.github/workflows/platform-api-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212

1313
jobs:
1414
platform-api-tests:
15-
runs-on: macos-14
15+
runs-on: macos-15
1616
if: github.repository == 'apollographql/apollo-kotlin'
1717
steps:
1818
- name: Checkout project

.github/workflows/pr.yml

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,9 @@ concurrency:
1818
jobs:
1919
tests-gradle:
2020
if: "!startsWith(github.head_ref, 'release-')"
21-
runs-on: macos-14
21+
runs-on: macos-15
2222
steps:
2323
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7
24-
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 #v4.2.1
25-
with:
26-
distribution: 'temurin'
27-
java-version: 17
2824
- uses: gradle/actions/setup-gradle@dbbdc275be76ac10734476cc723d82dfe7ec6eda #v3.4.2
2925
with:
3026
gradle-home-cache-cleanup: true
@@ -42,13 +38,9 @@ jobs:
4238

4339
tests-no-gradle:
4440
if: "!startsWith(github.head_ref, 'release-')"
45-
runs-on: macos-14
41+
runs-on: macos-15
4642
steps:
4743
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7
48-
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 #v4.2.1
49-
with:
50-
distribution: 'temurin'
51-
java-version: 17
5244
- uses: gradle/actions/setup-gradle@dbbdc275be76ac10734476cc723d82dfe7ec6eda #v3.4.2
5345
with:
5446
gradle-home-cache-cleanup: true
@@ -66,13 +58,9 @@ jobs:
6658

6759
tests-integration:
6860
if: "!startsWith(github.head_ref, 'release-')"
69-
runs-on: macos-14
61+
runs-on: macos-15
7062
steps:
7163
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7
72-
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 #v4.2.1
73-
with:
74-
distribution: 'temurin'
75-
java-version: 17
7664
- uses: gradle/actions/setup-gradle@dbbdc275be76ac10734476cc723d82dfe7ec6eda #v3.4.2
7765
with:
7866
gradle-home-cache-cleanup: true
@@ -90,11 +78,7 @@ jobs:
9078
path: diagnostics.zip
9179

9280
ios-tests:
93-
runs-on: macos-14
81+
runs-on: macos-15
9482
steps:
9583
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7
96-
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 #v4.2.1
97-
with:
98-
distribution: 'temurin'
99-
java-version: 17
10084
- run: /Applications/Xcode_16.2.0.app/Contents/Developer/usr/bin/xcodebuild -allowProvisioningUpdates -project tests/com.apollographql.iostest/com.apollographql.iostest.xcodeproj -configuration Debug -scheme com.apollographql.iostest -sdk iphoneos -destination name='iPhone 16' test -test-timeouts-enabled YES

.github/workflows/preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
type: string
1515
jobs:
1616
preview:
17-
runs-on: macos-14
17+
runs-on: macos-15
1818
if: github.repository == 'apollographql/apollo-kotlin'
1919
steps:
2020
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 #v4.2.1

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111

1212
jobs:
1313
deploy:
14-
runs-on: macos-14
14+
runs-on: macos-15
1515
if: github.repository == 'apollographql/apollo-kotlin'
1616
steps:
1717
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7

.github/workflows/tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
jobs:
1111
publish-libraries:
1212
name: Publish libraries
13-
runs-on: macos-14
13+
runs-on: macos-15
1414
if: github.repository == 'apollographql/apollo-kotlin'
1515
steps:
1616
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7

benchmark/build-logic/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
alias(libs.plugins.kotlin.jvm)
2+
alias(libs.plugins.kotlin.jvm.latest)
33
alias(libs.plugins.compat.patrouille)
44
}
55

build-logic/build.gradle.kts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import org.jetbrains.kotlin.samWithReceiver.gradle.SamWithReceiverExtension
22
import org.jetbrains.kotlin.samWithReceiver.gradle.SamWithReceiverGradleSubplugin
33

44
plugins {
5-
alias(libs.plugins.kotlin.jvm)
5+
alias(libs.plugins.kotlin.jvm.latest)
66
alias(libs.plugins.kotlin.sam)
77
alias(libs.plugins.compat.patrouille)
88
}
@@ -18,7 +18,13 @@ dependencies {
1818
compileOnly(gradleApi())
1919
compileOnly(libs.dgp)
2020

21+
// We add all the plugins to the classpath here so that they are loaded with proper conflict resolution
22+
// See https://github.com/gradle/gradle/issues/4741
2123
implementation(libs.okhttp)
24+
25+
/**
26+
* Ktor for the websocket tests in integration tests
27+
*/
2228
implementation(libs.ktor.server.netty)
2329
implementation(libs.ktor.server.cors)
2430
implementation(libs.ktor.server.websockets)
@@ -29,8 +35,6 @@ dependencies {
2935
implementation(libs.apollo.execution.gradle.plugin)
3036
implementation(libs.compat.patrouille)
3137

32-
// We add all the plugins to the classpath here so that they are loaded with proper conflict resolution
33-
// See https://github.com/gradle/gradle/issues/4741
3438
implementation(libs.android.plugin)
3539
implementation(libs.librarian)
3640
implementation(libs.nmcp)

0 commit comments

Comments
 (0)