File tree Expand file tree Collapse file tree 6 files changed +8
-12
lines changed
Expand file tree Collapse file tree 6 files changed +8
-12
lines changed Original file line number Diff line number Diff line change 7373 verbose : true
7474
7575 - name : Upload coverage HTML
76- uses : actions/upload-artifact@v3
76+ uses : actions/upload-artifact@v4
7777 with :
7878 name : coverage-report
7979 path : coverage.html
Original file line number Diff line number Diff line change 4848 continue-on-error : true
4949
5050 - name : Check for vulnerable dependencies
51- uses : Nancy Nancy check
5251 run : |
5352 go install github.com/sonatype-nexus-community/nancy@latest
5453 go list -json -m all | nancy sleuth
6665 echo "**Generated:** $(date)" >> dependency-report.md
6766
6867 - name : Upload dependency report
69- uses : actions/upload-artifact@v3
68+ uses : actions/upload-artifact@v4
7069 with :
7170 name : dependency-report
7271 path : dependency-report.md
Original file line number Diff line number Diff line change 5454 fi
5555
5656 - name : Comment if formatting needed
57- if : steps.fmt.outputs.needs_format == 'true' || steps.imports.outputs.needs_imports == 'true'
57+ if : github.event_name == 'pull_request' && ( steps.fmt.outputs.needs_format == 'true' || steps.imports.outputs.needs_imports == 'true')
5858 uses : actions/github-script@v7
5959 with :
6060 script : |
Original file line number Diff line number Diff line change @@ -36,11 +36,13 @@ jobs:
3636
3737 - name : Run go vet
3838 run : go vet ./...
39+ continue-on-error : true
3940
4041 - name : Run staticcheck
4142 run : |
4243 go install honnef.co/go/tools/cmd/staticcheck@latest
4344 staticcheck ./...
45+ continue-on-error : true
4446
4547 - name : Check for security issues with gosec
4648 run : |
5153 run : |
5254 go install github.com/kisielk/errcheck@latest
5355 errcheck ./...
56+ continue-on-error : true
Original file line number Diff line number Diff line change 8585 CGO_ENABLED : 1
8686
8787 - name : Upload build artifact
88- uses : actions/upload-artifact@v3
88+ uses : actions/upload-artifact@v4
8989 with :
9090 name : nodebyte-backend-linux
9191 path : bin/nodebyte-backend
Original file line number Diff line number Diff line change @@ -916,10 +916,4 @@ go tool cover -html=coverage.out # View coverage gaps
916916
917917## License
918918
919- AGPL 3.0 - See [ LICENSE] ( LICENSE ) file for details
920-
921- ---
922-
923- ** Last Updated:** January 14, 2026
924- ** Status:** Production Ready ✅
925- ** Contributors:** NodeByte Development Team
919+ AGPL 3.0 - See [ LICENSE] ( LICENSE ) file for details
You can’t perform that action at this time.
0 commit comments