Removes dependency workflows (#4225)

We remove the weekly GH Action workflows for dependency updates,
given that this function is handled by Dependabot.

Resolves #2579
This commit is contained in:
Philip Mallegol-Hansen 2023-05-22 20:10:42 -07:00 committed by GitHub
parent 76b11a209e
commit b5f7d6195f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 37 deletions

View file

@ -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 }}

View file

@ -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 }}