From d8480e894645f0760ac0ba8aa97d3a5c069bc2c5 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Wed, 13 Apr 2022 15:26:05 +0100 Subject: [PATCH] Move back to GitHub --- .../.github => .github}/workflows/build.yml | 0 .../.github => .github}/workflows/issues.yml | 0 .github/workflows/sast.yml | 15 +++++++++++++++ .gitignore | 2 ++ .gitlab-ci.yml => .gitlab-archive/.gitlab-ci.yml | 0 .github-archive/renovate.json => renovate.json | 0 6 files changed, 17 insertions(+) rename {.github-archive/.github => .github}/workflows/build.yml (100%) rename {.github-archive/.github => .github}/workflows/issues.yml (100%) create mode 100644 .github/workflows/sast.yml create mode 100644 .gitignore rename .gitlab-ci.yml => .gitlab-archive/.gitlab-ci.yml (100%) rename .github-archive/renovate.json => renovate.json (100%) diff --git a/.github-archive/.github/workflows/build.yml b/.github/workflows/build.yml similarity index 100% rename from .github-archive/.github/workflows/build.yml rename to .github/workflows/build.yml diff --git a/.github-archive/.github/workflows/issues.yml b/.github/workflows/issues.yml similarity index 100% rename from .github-archive/.github/workflows/issues.yml rename to .github/workflows/issues.yml diff --git a/.github/workflows/sast.yml b/.github/workflows/sast.yml new file mode 100644 index 0000000..b4a2d09 --- /dev/null +++ b/.github/workflows/sast.yml @@ -0,0 +1,15 @@ +name: Build +on: [push] + +jobs: + sast: + - name: Scan + uses: AppThreat/sast-scan-action@master + with: + output: reports + type: go + - name: Upload reports + uses: actions/upload-artifact@v1 + with: + name: sast-scan-reports + path: reports diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..09bd7b9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/.vscode +/.idea \ No newline at end of file diff --git a/.gitlab-ci.yml b/.gitlab-archive/.gitlab-ci.yml similarity index 100% rename from .gitlab-ci.yml rename to .gitlab-archive/.gitlab-ci.yml diff --git a/.github-archive/renovate.json b/renovate.json similarity index 100% rename from .github-archive/renovate.json rename to renovate.json