Skip to content

Commit f3cf3c1

Browse files
authored
Merge pull request #305 from indieweb/update-dependabot-config
Add npm and github-actions to Dependabot config
2 parents 4a2ffa0 + 7cd8c9a commit f3cf3c1

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
61
version: 2
72
updates:
8-
- package-ecosystem: "composer" # See documentation for possible values
9-
directory: "/" # Location of package manifests
3+
- package-ecosystem: "composer"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
- package-ecosystem: "npm"
8+
directory: "/"
9+
schedule:
10+
interval: "daily"
11+
- package-ecosystem: "github-actions"
12+
directory: "/"
1013
schedule:
1114
interval: "daily"

.github/workflows/phpunit.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
extensions: mysql
2828
- name: Install Composer dependencies for PHP
2929
uses: "ramsey/composer-install@v2"
30+
- name: Install SVN
31+
run: sudo apt-get update && sudo apt-get install -y subversion
3032
- name: Setup Test Environment
3133
run: composer setup-local-tests
3234
- name: Unit Testing

0 commit comments

Comments
 (0)