Skip to content

Commit 341dfc8

Browse files
authored
Fix link on dash download (#80)
* Fix link on dash download * Update NOTICE-3RD-PARTY-CONTENT.md
1 parent 04ae667 commit 341dfc8

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

.github/workflows/check-licenses.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/checkout@v3
3434
with:
3535
repository: eclipse-velocitas/license-check
36-
ref: v1.2.2
36+
ref: v1.2.3
3737
path: .github/actions/license-check
3838

3939
- name: Run License Checker
@@ -42,3 +42,25 @@ jobs:
4242
config-file-path: ./.licensechecker.yml
4343
fail-on-violation: false
4444
notice-file-name: "NOTICE-3RD-PARTY-CONTENT"
45+
generate-dash: true
46+
47+
- name: Setup Java JDK
48+
uses: actions/[email protected]
49+
with:
50+
java-version: 11.0.19
51+
52+
- name: Run dash
53+
shell: bash
54+
continue-on-error: true
55+
run: |
56+
wget -O dash.jar "https://repo.eclipse.org/content/repositories/dash-licenses/org/eclipse/dash/org.eclipse.dash.licenses/1.0.2/org.eclipse.dash.licenses-1.0.2.jar"
57+
java -jar dash.jar clearlydefined.input -summary DEPENDENCIES
58+
59+
- name: Upload dash input/output as artifacts
60+
uses: actions/upload-artifact@v3
61+
if: always()
62+
with:
63+
name: "dash-artifacts"
64+
path: |
65+
clearlydefined.input
66+
DEPENDENCIES

NOTICE-3RD-PARTY-CONTENT.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
| Dependency | Version | License |
9797
|:-----------|:-------:|--------:|
9898
|actions/checkout|v3|MIT License|
99+
|actions/setup-java|v1.4.4|MIT License|
99100
|actions/setup-python|v4|MIT License|
100101
|actions/upload-artifact|v3|MIT License|
101102
|github/codeql-action|v2|MIT License|

0 commit comments

Comments
 (0)