File tree 4 files changed +17
-9
lines changed
4 files changed +17
-9
lines changed Original file line number Diff line number Diff line change 7
7
name : Check formatting
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : actions/checkout@v1
10
+ - uses : actions/checkout@v2
11
11
- name : Create a Go workspace and install vmdfmt
12
12
run : |
13
13
mkdir /tmp/go
14
14
export GOPATH=/tmp/go
15
15
go get github.com/bobertlo/vmd/cmd/vmdfmt
16
- - name : Install markdown-link-check tool
17
- run : npm install markdown-link-check
18
16
- name : Check formatting
19
17
run : |
20
18
export PATH="$PATH:/tmp/go/bin:$(pwd)/node_modules/.bin"
21
19
./ci/check_format.sh
20
+
21
+ links :
22
+ name : Check links
23
+ runs-on : ubuntu-latest
24
+ steps :
25
+ - uses : actions/checkout@v2
26
+ - name : Link Checker
27
+ id : lc
28
+ uses : peter-evans/link-checker@v1
29
+ - name : Fail if there were link errors
30
+ run : exit ${{ steps.lc.outputs.exit_code }}
Original file line number Diff line number Diff line change 17
17
echo " Checking file \" $f \" "
18
18
vmdfmt -cols 100 $f > $OUT_DIR /$( basename $f )
19
19
git diff --exit-code $f $OUT_DIR /$( basename $f )
20
- markdown-link-check -q $f
21
20
done
22
21
23
22
rm -rf $OUT_DIR
Original file line number Diff line number Diff line change 16
16
issue] ( https://github.com/ARM-software/psa-arch-tests/issues/220 ) .
17
17
- [ The Parsec Secure Element Driver is ready.] ( https://github.com/parallaxsecond/parsec-se-driver )
18
18
- [ The Parsec Threat Model has been updated after
19
- review] ( https://parallaxsecond.github.io/parsec-book/threat_model /threat_model.html ) .
19
+ review] ( https://parallaxsecond.github.io/parsec-book/parsec_security/parsec_threat_model /threat_model.html ) .
20
20
- [ The Parsec Rust client Threat Model has been
21
- created] ( https://parallaxsecond.github.io/parsec-book/threat_model /rust_client_threat_model.html ) .
21
+ created] ( https://parallaxsecond.github.io/parsec-book/parsec_security /rust_client_threat_model/threat_model .html ) .
22
22
- [ Work has begun on implementing wiping of all sensitive data from memory after
23
23
use.] ( https://github.com/parallaxsecond/parsec/issues/122 )
24
24
Original file line number Diff line number Diff line change 15
15
- The [ installation
16
16
guide] ( https://parallaxsecond.github.io/parsec-book/parsec_service/install_parsec_linux.html ) of
17
17
Parsec as a systemd service has been updating with the recent changes on our [ Threat
18
- Model] ( https://parallaxsecond.github.io/parsec-book/threat_model/ threat_model.html ) and
19
- [ recommendations for secure
20
- deployment] ( https://parallaxsecond.github.io/parsec-book/threat_model /secure_deployment.html ) .
18
+ Model] ( https://parallaxsecond.github.io/parsec-book/parsec_security/parsec_threat_model/ threat_model.html )
19
+ and [ recommendations for secure
20
+ deployment] ( https://parallaxsecond.github.io/parsec-book/parsec_security /secure_deployment.html ) .
21
21
- The Unix Domain Socket Listener has been updated with a new socket location at
22
22
` /tmp/parsec/parsec.sock ` . That allows clients to check for specific permissions on the
23
23
` /tmp/parsec ` folder. Those checks are now implemented in the Rust Client.
You can’t perform that action at this time.
0 commit comments