From 41bc99cc173bbb0ac5290a14972a8575b97ba315 Mon Sep 17 00:00:00 2001 From: Erkan Ozsoy Date: Mon, 3 Jul 2023 12:53:07 +0300 Subject: [PATCH] dependabot.yml and gosec.yml updated --- .github/dependabot.yml | 6 ++++++ .github/workflows/gosec.yml | 6 +++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fce55e29..c0da927a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -32,6 +32,12 @@ updates: - "🤖 Dependencies" schedule: interval: "daily" + - package-ecosystem: "gomod" + directory: "/etcd/" # Location of package manifests + labels: + - "🤖 Dependencies" + schedule: + interval: "daily" - package-ecosystem: "gomod" directory: "/pebble/" # Location of package manifests labels: diff --git a/.github/workflows/gosec.yml b/.github/workflows/gosec.yml index e060ad79..af8adca1 100644 --- a/.github/workflows/gosec.yml +++ b/.github/workflows/gosec.yml @@ -38,7 +38,7 @@ jobs: - name: Run Gosec (root) working-directory: . run: | - gosec -exclude-dir=arangodb -exclude-dir=badger -exclude-dir=couchbase -exclude-dir=dynamodb -exclude-dir=memcache -exclude-dir=memory -exclude-dir=mongodb -exclude-dir=mysql -exclude-dir=postgres -exclude-dir=redis -exclude-dir=ristretto -exclude-dir=sqlite3 -exclude-dir=s3 -exclude-dir=bbolt -exclude-dir=azureblob -exclude-dir=mssql -exclude-dir=pebble ./.... + gosec -exclude-dir=arangodb -exclude-dir=badger -exclude-dir=couchbase -exclude-dir=dynamodb -exclude-dir=etcd -exclude-dir=memcache -exclude-dir=memory -exclude-dir=mongodb -exclude-dir=mysql -exclude-dir=postgres -exclude-dir=redis -exclude-dir=ristretto -exclude-dir=sqlite3 -exclude-dir=s3 -exclude-dir=bbolt -exclude-dir=azureblob -exclude-dir=mssql -exclude-dir=pebble ./.... # ----- - name: Run Gosec (arangodb) working-directory: ./arangodb @@ -56,6 +56,10 @@ jobs: working-directory: ./dynamodb run: gosec ./... # ----- + - name: Run Gosec (etcd) + working-directory: ./etcd + run: gosec ./... + # ----- - name: Run Gosec (memcache) working-directory: ./memcache run: gosec ./...