From 1653cde9ba98123235a2ff84c62398ed379b179d Mon Sep 17 00:00:00 2001 From: Diego Figueroa Date: Mon, 16 Dec 2024 08:49:13 -0400 Subject: [PATCH 1/2] ci: add security analysis --- .github/workflows/security.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/security.yml diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml new file mode 100644 index 0000000..8baddce --- /dev/null +++ b/.github/workflows/security.yml @@ -0,0 +1,14 @@ +name: Security Analysis + +on: + push: + branches: + - master + pull_request: + workflow_dispatch: + +jobs: + analysis: + name: Shared + uses: aurora-is-near/.github/.github/workflows/security_analysis.yml@master + secrets: inherit From a143a6cbecd690a66feee1b82b657c0193e4dec3 Mon Sep 17 00:00:00 2001 From: Diego Figueroa Date: Mon, 16 Dec 2024 08:55:11 -0400 Subject: [PATCH 2/2] ci: add daily schedule to security workflow --- .github/workflows/security.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 8baddce..2e77b87 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -6,6 +6,8 @@ on: - master pull_request: workflow_dispatch: + schedule: + - cron: '0 0 * * *' jobs: analysis: