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