From b5f7d6195f1bca5a8902a6d37e80697bf6d8e7d6 Mon Sep 17 00:00:00 2001 From: Philip Mallegol-Hansen Date: Mon, 22 May 2023 20:10:42 -0700 Subject: [PATCH] Removes dependency workflows (#4225) We remove the weekly GH Action workflows for dependency updates, given that this function is handled by Dependabot. Resolves #2579 --- .github/workflows/deps-npm.yml | 18 ------------------ .github/workflows/deps-python.yml | 19 ------------------- 2 files changed, 37 deletions(-) delete mode 100644 .github/workflows/deps-npm.yml delete mode 100644 .github/workflows/deps-python.yml diff --git a/.github/workflows/deps-npm.yml b/.github/workflows/deps-npm.yml deleted file mode 100644 index 0548e8e2..00000000 --- a/.github/workflows/deps-npm.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Update Deps - NPM -on: - schedule: - # Sunday at 5:00pm - - cron: "0 17 * * 0" - workflow_dispatch: -jobs: - update: - name: Update NPM Dependencies - runs-on: ubuntu-latest - timeout-minutes: 30 - steps: - - uses: actions/checkout@v3 - - name: Update Dependencies - run: ./.github/scripts/update-npm.sh - env: - id: ${{ github.run_id }} - token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/deps-python.yml b/.github/workflows/deps-python.yml deleted file mode 100644 index e875b40f..00000000 --- a/.github/workflows/deps-python.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Update Deps - Python -on: - schedule: - # Sunday at 5:00pm - - cron: "0 17 * * 0" - workflow_dispatch: -jobs: - update: - name: Update Python Dependencies - runs-on: ubuntu-latest - timeout-minutes: 30 - steps: - - uses: actions/checkout@v3 - - name: Update Dependencies - run: ./.github/scripts/update-python.sh - env: - id: ${{ github.run_id }} - token: ${{ secrets.GITHUB_TOKEN }} - working_directory: ${{ github.workspace }}