From e19d0fd3a2d53ae30b3508f9e3b57ac7a92e40a6 Mon Sep 17 00:00:00 2001 From: jake Date: Thu, 24 Apr 2025 12:47:37 -0400 Subject: [PATCH] adding forgotten step --- .gitea/workflows/security.yaml | 3 +++ .gitea/workflows/testing.yaml | 17 ----------------- 2 files changed, 3 insertions(+), 17 deletions(-) delete mode 100644 .gitea/workflows/testing.yaml diff --git a/.gitea/workflows/security.yaml b/.gitea/workflows/security.yaml index e7b07a8..0584349 100644 --- a/.gitea/workflows/security.yaml +++ b/.gitea/workflows/security.yaml @@ -5,5 +5,8 @@ jobs: scans: runs-on: smoke-test steps: + - name: "clone code" + uses: actions/checkout@v4 + - name: "security scan" uses: https://code.jakeyoungdev.com/actions/security@main #update this to a tag after first successful run \ No newline at end of file diff --git a/.gitea/workflows/testing.yaml b/.gitea/workflows/testing.yaml deleted file mode 100644 index c8078e4..0000000 --- a/.gitea/workflows/testing.yaml +++ /dev/null @@ -1,17 +0,0 @@ -name: "test" -on: push #runs on pushes to any branch - -jobs: - test: - runs-on: smoke-test - steps: - - name: "dependency and stdlib scan" - uses: golang/govulncheck-action@v1.0.4 - with: - go-package: ./... - go-version-file: go.mod - - - name: "static code analysis" - uses: securego/gosec@v2.22.3 - with: - args: ./... \ No newline at end of file