diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 4761c4d4..5a423022 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -10,6 +10,7 @@ jobs: steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - uses: ./config-npm + - uses: ./config-pip - uses: SonarSource/gh-action_pre-commit@2ddc0c7fdabce0adfaaa4075a17690972ed9961a # 1.2.0 with: extra-args: > diff --git a/config-gradle/action.yml b/config-gradle/action.yml index 730c7ee7..273a5f88 100644 --- a/config-gradle/action.yml +++ b/config-gradle/action.yml @@ -174,6 +174,11 @@ runs: develocity-plugin-version: '4.0' develocity-access-key: ${{ inputs.use-develocity == 'true' && fromJSON(steps.secrets.outputs.vault).DEVELOCITY_TOKEN || '' }} + # Resolve Develocity plugin via Repox — plugins.gradle.org is blocked during registry brownouts. + gradle-plugin-repository-url: ${{ inputs.use-develocity == 'true' && + format('{0}/artifactory/plugins.gradle.org/', inputs.repox-url) || '' }} + gradle-plugin-repository-username: ${{ inputs.use-develocity == 'true' && env.ARTIFACTORY_USERNAME || '' }} + gradle-plugin-repository-password: ${{ inputs.use-develocity == 'true' && env.ARTIFACTORY_ACCESS_TOKEN || '' }} - name: Generate Gradle Cache Key if: steps.config-gradle-completed.outputs.skip != 'true' && inputs.disable-caching != 'true'