Compare commits

...

2 commits

Author SHA1 Message Date
55185fbe8b
actually add nvd result to step summary 2024-07-15 16:25:08 -05:00
5bbd928268
fetch all history 2024-07-15 15:37:35 -05:00

View file

@ -64,6 +64,8 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: DeterminateSystems/nix-installer-action@v12 - uses: DeterminateSystems/nix-installer-action@v12
with: with:
@ -104,7 +106,9 @@ jobs:
--print-build-logs \ --print-build-logs \
--out-link updated --out-link updated
- run: nix run "nixpkgs#nvd" diff ./current ./updated - run: |
echo "# System Diff" >> $GITHUB_STEP_SUMMARY
nix run "nixpkgs#nvd" diff ./current ./updated | tee -a $GITHUB_STEP_SUMMARY
- run: df -h - run: df -h
# is this necessary? # is this necessary?