From 352058e52f9fe1666bb6437dddaf03dd4fa55b84 Mon Sep 17 00:00:00 2001 From: CarlTern <35721844+CarlTern@users.noreply.github.com> Date: Wed, 22 Nov 2023 11:54:30 +0100 Subject: [PATCH] Delete .github/workflows/debricked.yml --- .github/workflows/debricked.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/debricked.yml diff --git a/.github/workflows/debricked.yml b/.github/workflows/debricked.yml deleted file mode 100644 index 047b2678..00000000 --- a/.github/workflows/debricked.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Debricked - -on: - push: - branches: - - main - pull_request: - -jobs: - scan: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v3 - with: - go-version: '1.20' - - uses: actions/cache@v3 - with: - path: | - ~/Library/Caches/go-build - ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - - run: | - go run cmd/debricked/main.go scan -t ${{ secrets.DEBRICKED_TOKEN }} -e "pkg/**" -e "test/**" -e "**/testdata/**"