update
This commit is contained in:
28
.github/workflows/gosec.yml
vendored
Normal file
28
.github/workflows/gosec.yml
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
name: "Security Scan"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
schedule:
|
||||
- cron: '0 0 * * 0'
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
security-events: write
|
||||
env:
|
||||
GO111MODULE: on
|
||||
steps:
|
||||
- name: Checkout Source
|
||||
uses: actions/checkout@v4
|
||||
- name: Run Gosec Security Scanner
|
||||
uses: securego/gosec@master
|
||||
with:
|
||||
args: '-no-fail -fmt sarif -out results.sarif ./...'
|
||||
- name: Upload SARIF file
|
||||
uses: github/codeql-action/upload-sarif@v2
|
||||
with:
|
||||
sarif_file: results.sarif
|
||||
@@ -1,11 +1,11 @@
|
||||
# Reticulum-Go
|
||||
|
||||
> [!NOTE]
|
||||
> This is WIP and not ready as of MAR 2025, I am busy but will work on when I am able to.
|
||||
> This is WIP and not ready as of MAR 2025, I am busy but will work on it when I am able to.
|
||||
|
||||
[Reticulum Network](https://github.com/markqvist/Reticulum) implementation in Go.
|
||||
|
||||
Aiming for full spec compatibility with the Python version 0.8.8+.
|
||||
Aiming for full spec compatibility with the Python version 0.9.2.
|
||||
|
||||
`Go 1.24.0`
|
||||
|
||||
|
||||
Reference in New Issue
Block a user