From 70841ea741d665f7502a500f4c764e25dbf067dd Mon Sep 17 00:00:00 2001 From: daz Date: Sat, 19 Aug 2023 10:23:03 -0600 Subject: [PATCH] Update to Gradle 8.3 --- .github/workflows/gradle.yml | 5 +++-- gradle/wrapper/gradle-wrapper.properties | 4 ++-- .../dependencygraph/DependencyExtractorConfigTest.groovy | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 6c5c12f0..000d754f 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -30,9 +30,10 @@ jobs: strategy: fail-fast: false matrix: - # Test newest 5.x, 6.x and 7.x, plus oldest patched 7.x and 8.x + # Test latest version 5.x, 6.x and 7.x, plus oldest patched 7.x + # Test all patched minor versions of 8.x # Latest 8.x is tested in 'quick-check' job - gradle-version: [ "5.6.4", "6.9.4", "7.0.2", "7.6.2", "8.0.2"] + gradle-version: [ "5.6.4", "6.9.4", "7.0.2", "7.6.2", "8.0.2", "8.1.1", "8.2.1"] runs-on: ubuntu-latest env: GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index a7c2bd1b..864d6c47 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,7 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionSha256Sum=38f66cd6eef217b4c35855bb11ea4e9fbc53594ccccb5fb82dfd317ef8c2c5a3 -distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip +distributionSha256Sum=591855b517fc635b9e04de1d05d5e76ada3f89f5fc76f87978d1b245b4f69225 +distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/plugin-test/src/test/groovy/org/gradle/github/dependencygraph/DependencyExtractorConfigTest.groovy b/plugin-test/src/test/groovy/org/gradle/github/dependencygraph/DependencyExtractorConfigTest.groovy index 0ba90d83..d08445a2 100644 --- a/plugin-test/src/test/groovy/org/gradle/github/dependencygraph/DependencyExtractorConfigTest.groovy +++ b/plugin-test/src/test/groovy/org/gradle/github/dependencygraph/DependencyExtractorConfigTest.groovy @@ -53,7 +53,7 @@ class DependencyExtractorConfigTest extends BaseExtractorTest { } @IgnoreIf({ - // There's an issue where BuildService is closed too early in Gradle 8.0, + // There is an issue where BuildService is closed too early in Gradle 8.0, // resulting in empty dependency graph. GradleVersion.version(testGradleVersion) < GradleVersion.version("8.1") })