mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 01:05:54 -05:00
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:
parent
76b11a209e
commit
b5f7d6195f
2 changed files with 0 additions and 37 deletions
18
.github/workflows/deps-npm.yml
vendored
18
.github/workflows/deps-npm.yml
vendored
|
@ -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 }}
|
19
.github/workflows/deps-python.yml
vendored
19
.github/workflows/deps-python.yml
vendored
|
@ -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 }}
|
Loading…
Reference in a new issue