From 7822a52b8a69fc142c9d5fc9ad140261ac338394 Mon Sep 17 00:00:00 2001 From: Tim Warner Date: Wed, 20 Mar 2024 17:18:09 -0500 Subject: [PATCH] Remove Dependabot scan workflow --- .github/dependabot.yml | 6 ++++++ .github/workflows/dependabot-scan.yml | 25 ------------------------- 2 files changed, 6 insertions(+), 25 deletions(-) create mode 100644 .github/dependabot.yml delete mode 100644 .github/workflows/dependabot-scan.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..e1eab5a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" \ No newline at end of file diff --git a/.github/workflows/dependabot-scan.yml b/.github/workflows/dependabot-scan.yml deleted file mode 100644 index ede3097..0000000 --- a/.github/workflows/dependabot-scan.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Dependabot Alert Scan -on: - schedule: - - cron: '0 0 * * *' # Runs daily at 12:00 AM UTC - workflow_dispatch: # Allows manual triggering - -jobs: - scan: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Setup Node.js - uses: actions/setup-node@v2 - with: - node-version: 14 - - - name: Install dependencies - run: npm ci - - - name: Run Dependabot alert scan - uses: dependabot/dependabot-alert-action@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file