Skip to content

Commit 39eb003

Browse files
authored
Merge pull request #317 from gradle/gk/ghaAccessTokenMigration
Github actions access token migration
2 parents 210df86 + a7ff1b5 commit 39eb003

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/build-verification.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
distribution: 'temurin'
1717
- name: Set up Gradle
1818
uses: gradle/actions/setup-gradle@v3
19+
with:
20+
develocity-access-key: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}
1921
- name: Build with Gradle
2022
run: ./gradlew build -x signPluginMavenPublication -i -Porg.gradle.java.installations.auto-download=false
21-
env:
22-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_SOLUTIONS_ACCESS_TOKEN }}

.github/workflows/submit-github-dependency-graph.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
distribution: temurin
1818
java-version: 8
19-
- name: Setup Gradle
19+
- name: Submit dependency graph
2020
uses: gradle/actions/dependency-submission@v3
21-
env:
22-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_SOLUTIONS_ACCESS_TOKEN }}
21+
with:
22+
develocity-access-key: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}

.github/workflows/wrapper-upgrade-execution.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ jobs:
3131
distribution: 'temurin'
3232
- name: Set up Gradle
3333
uses: gradle/actions/setup-gradle@v3
34+
with:
35+
develocity-access-key: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}
3436
- name: Upgrade Wrappers
3537
run: ./gradlew clean upgradeGradleWrapperAll --continue -Porg.gradle.java.installations.auto-download=false
3638
env:
3739
WRAPPER_UPGRADE_GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_SOLUTIONS_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)