-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (31 loc) · 1012 Bytes
/
dependency-graph.yml
File metadata and controls
38 lines (31 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Update Dependency Graph
on:
push:
branches:
- main
jobs:
submit:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
with:
fetch-depth: 0
- name: Download Java JDK
uses: typelevel/download-java@817e8c0d48dc2e88e155a8e4f69ba493bef621be # v2
id: download-java
with:
distribution: temurin
java-version: 17
- name: Setup Java JDK
uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5
with:
distribution: jdkfile
java-version: 17
jdkFile: ${{ steps.download-java.outputs.jdkFile }}
- name: Generate Dependency Graph Snapshot
uses: gradle/actions/dependency-submission@0723195856401067f7a2779048b490ace7a47d7c # v5
env:
DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS: 'compileClasspath|runtimeClasspath'