File tree 2 files changed +14
-11
lines changed
2 files changed +14
-11
lines changed Original file line number Diff line number Diff line change 1
1
version : 3
2
2
project :
3
3
name : cardano-rosetta-java
4
+ url : https://github.com/cardano-foundation/cardano-rosetta-java
5
+
4
6
ignore :
5
7
- jakarta.servlet:jakarta.servlet-api
6
8
- jakarta.websocket:jakarta.websocket-api
Original file line number Diff line number Diff line change @@ -12,15 +12,16 @@ jobs:
12
12
- name : " Checkout Code"
13
13
uses : actions/checkout@v3
14
14
15
- - name : " Run FOSSA Scan"
16
- uses : fossas/fossa-action@main # Use a specific version if locking is preferred
17
- with :
18
- api-key : ${{secrets.FOSSA_API_KEY}}
19
- config : .fossa.yml
15
+ - name : " Download and Install FOSSA CLI"
16
+ shell : bash
17
+ run : |
18
+ wget https://github.com/fossas/fossa-cli/releases/download/v3.10.6/fossa_3.10.6_linux_amd64.zip
19
+ unzip fossa_3.10.6_linux_amd64.zip
20
+ chmod +x fossa
21
+ mv fossa fossa-cli
22
+
23
+ - name : " Run FOSSA Test with Config"
24
+ shell : bash
25
+ run : |
26
+ ./fossa-cli test --config .fossa.yml --fossa-api-key ${{secrets.FOSSA_API_KEY}}
20
27
21
- - name : " Run FOSSA Test"
22
- uses : fossas/fossa-action@main # Use a specific version if locking is preferred
23
- with :
24
- api-key : ${{secrets.FOSSA_API_KEY}}
25
- run-tests : true
26
- config : .fossa.yml
You can’t perform that action at this time.
0 commit comments