File tree Expand file tree Collapse file tree 3 files changed +24
-6
lines changed Expand file tree Collapse file tree 3 files changed +24
-6
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:
4
+ # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5
+
6
+ version : 2
7
+ updates :
8
+ - package-ecosystem : " npm" # See documentation for possible values
9
+ directories :
10
+ - " /"
11
+ - " /test"
12
+ schedule :
13
+ interval : " weekly"
14
+ - package-ecosystem : " github-actions" # https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
15
+ directory : " /"
16
+ schedule :
17
+ # Check for updates to GitHub Actions every week
18
+ interval : " weekly"
Original file line number Diff line number Diff line change @@ -12,13 +12,13 @@ jobs:
12
12
13
13
steps :
14
14
- name : Checkout
15
- uses : actions/checkout@v2
15
+ uses : actions/checkout@v4
16
16
17
17
- name : Determine Yarn Cache Path
18
18
id : yarn-cache-dir-path
19
19
run : echo "::set-output name=dir::$(yarn cache dir)"
20
20
21
- - uses : actions/cache@v1
21
+ - uses : actions/cache@v4
22
22
id : yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
23
23
with :
24
24
path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
27
27
${{ runner.os }}-yarn-
28
28
29
29
- name : Use Node.js ${{ matrix.node-version }}
30
- uses : actions/setup-node@v1
30
+ uses : actions/setup-node@v4
31
31
with :
32
32
node-version : ${{ matrix.node-version }}
33
33
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ jobs:
11
11
12
12
steps :
13
13
- name : Checkout
14
- uses : actions/checkout@v2
14
+ uses : actions/checkout@v4
15
15
16
16
- name : Determine Yarn Cache Path
17
17
id : yarn-cache-dir-path
18
18
run : echo "::set-output name=dir::$(yarn cache dir)"
19
19
20
- - uses : actions/cache@v1
20
+ - uses : actions/cache@v4
21
21
id : yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
22
22
with :
23
23
path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
26
26
${{ runner.os }}-yarn-
27
27
28
28
- name : Setup Node.js 18.x to publish to npmjs.org
29
- uses : actions/setup-node@v1
29
+ uses : actions/setup-node@v4
30
30
with :
31
31
node-version : ' 18.x'
32
32
registry-url : ' https://registry.npmjs.org'
You can’t perform that action at this time.
0 commit comments