Skip to content

Commit

Permalink
improve dependencies workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
handymenny committed Feb 2, 2024
1 parent 74ab38b commit 3edbd16
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup jdk11
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@v3
env:
# Exclude dependencies that are only resolved in test and tstypes classpaths
DEPENDENCY_GRAPH_EXCLUDE_CONFIGURATIONS: '.*(test|tstypes)(Compile|Runtime)Classpath'
DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS: '(compile|runtime)Classpath'

0 comments on commit 3edbd16

Please sign in to comment.