From d0294f311d25059f82eeefcd38baef6aaefd129f Mon Sep 17 00:00:00 2001 From: Marc Philipp Date: Thu, 2 Jan 2025 16:47:08 +0100 Subject: [PATCH] Remove snapshot dependency setup --- .github/actions/run-gradle/action.yml | 1 - .github/scripts/checkBuildReproducibility.sh | 1 - settings.gradle.kts | 6 ------ 3 files changed, 8 deletions(-) diff --git a/.github/actions/run-gradle/action.yml b/.github/actions/run-gradle/action.yml index 5310fd62e29b..a7f12e1fc13a 100644 --- a/.github/actions/run-gradle/action.yml +++ b/.github/actions/run-gradle/action.yml @@ -29,6 +29,5 @@ runs: -Pjunit.develocity.predictiveTestSelection.enabled=true \ -Pjunit.develocity.predictiveTestSelection.selectRemainingTests=${{ github.event_name != 'pull_request' }} \ "-Dscan.value.GitHub job=${{ github.job }}" \ - --refresh-dependencies \ javaToolchains \ ${{ inputs.arguments }} diff --git a/.github/scripts/checkBuildReproducibility.sh b/.github/scripts/checkBuildReproducibility.sh index 9c6bd410b383..60f2bd165022 100755 --- a/.github/scripts/checkBuildReproducibility.sh +++ b/.github/scripts/checkBuildReproducibility.sh @@ -13,7 +13,6 @@ function calculate_checksums() { --no-build-cache \ -Porg.gradle.java.installations.auto-download=false \ -Dscan.tag.Reproducibility \ - --refresh-dependencies \ clean \ assemble diff --git a/settings.gradle.kts b/settings.gradle.kts index 6af29a55f440..ba5ae9fd677f 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -15,12 +15,6 @@ plugins { dependencyResolutionManagement { repositories { mavenCentral() - // TODO Remove --refresh-dependencies from CI builds when no longer consuming snapshots - maven(url = "https://oss.sonatype.org/content/repositories/snapshots") { - mavenContent { - snapshotsOnly() - } - } } }