File tree Expand file tree Collapse file tree 2 files changed +12
-11
lines changed
Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 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:
41# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
52
63version : 2
74updates :
8- - package-ecosystem : " npm" # See documentation for possible values
9- directory : " /" # Location of package manifests
5+ - package-ecosystem : " github-actions"
6+ directory : " /"
7+ schedule :
8+ interval : " monthly"
9+ - package-ecosystem : " npm"
10+ directory : " /"
1011 schedule :
1112 interval : " monthly"
1213 groups :
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ jobs:
1313 permissions :
1414 contents : read
1515 steps :
16- - uses : actions/checkout@v4
17- - uses : actions/setup-node@v4
16+ - uses : actions/checkout@v5
17+ - uses : actions/setup-node@v5
1818 with :
19- node-version : lts
19+ node-version : lts/*
2020 - run : npm ci
2121 - run : npm test
2222
@@ -27,10 +27,10 @@ jobs:
2727 contents : read
2828 packages : write
2929 steps :
30- - uses : actions/checkout@v4
31- - uses : actions/setup-node@v4
30+ - uses : actions/checkout@v5
31+ - uses : actions/setup-node@v5
3232 with :
33- node-version : lts
33+ node-version : lts/*
3434 registry-url : https://registry.npmjs.org/
3535 - run : npm ci
3636 - run : npm publish
You can’t perform that action at this time.
0 commit comments