Skip to content

Commit

Permalink
ci(workflows): disable GitHub dependency graph in non-build steps
Browse files Browse the repository at this point in the history
- Set `GITHUB_DEPENDENCY_GRAPH_ENABLED` to false in publication and analysis steps

Signed-off-by: Art Shendrik <[email protected]>
  • Loading branch information
amal committed Nov 26, 2024
1 parent f26753e commit 4825a3e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ jobs:
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.OSSRH_PASSWORD }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }}
GITHUB_DEPENDENCY_GRAPH_ENABLED: false
RELEASE: true
run: ./gradlew publish -DDISABLE_TESTS --no-configuration-cache --stacktrace --scan

Expand All @@ -195,6 +196,8 @@ jobs:
if: matrix.os == 'ubuntu' && matrix.java == '17'
timeout-minutes: 6
uses: github/codeql-action/analyze@v3
env:
GITHUB_DEPENDENCY_GRAPH_ENABLED: false
with:
category: "/language:${{matrix.language}}"

Expand Down

0 comments on commit 4825a3e

Please sign in to comment.