Skip to content

Commit 7153433

Browse files
ottnormldependabot[bot]sekwah41
authored
ci: add dependabot and bump actions versions (#701)
* ci: Add Dependabot (#48) * ci: Add Dependabot for Github actions * ci: Add Dependabot for npm packages * build(deps): bump pre-commit/action from 2.0.3 to 3.0.0 (#23) * build(deps): bump actions/checkout from 2 to 4 (#24) * build(deps): bump github/codeql-action from 1 to 2 (#22) * build(deps): bump actions/setup-node from 2 to 3 (#21) --------- Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sekwah <[email protected]>
1 parent c3af342 commit 7153433

File tree

2 files changed

+59
-1
lines changed

2 files changed

+59
-1
lines changed

.github/dependabot.yml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
open-pull-requests-limit: 5
6+
schedule:
7+
day: saturday
8+
interval: weekly
9+
# app
10+
- package-ecosystem: npm
11+
directory: /
12+
open-pull-requests-limit: 5
13+
schedule:
14+
interval: daily
15+
groups:
16+
app-development-dependencies:
17+
dependency-type: "development"
18+
patterns:
19+
- "*"
20+
update-types:
21+
- minor
22+
- patch
23+
app-production-dependencies:
24+
dependency-type: "production"
25+
patterns:
26+
- "*"
27+
update-types:
28+
- minor
29+
- patch
30+
ignore:
31+
- dependency-name: "*"
32+
update-types:
33+
- version-update:semver-major
34+
# website
35+
- package-ecosystem: npm
36+
directory: /website
37+
open-pull-requests-limit: 5
38+
schedule:
39+
interval: daily
40+
groups:
41+
website-development-dependencies:
42+
dependency-type: "development"
43+
patterns:
44+
- "*"
45+
update-types:
46+
- minor
47+
- patch
48+
website-production-dependencies:
49+
dependency-type: "production"
50+
patterns:
51+
- "*"
52+
update-types:
53+
- minor
54+
- patch
55+
ignore:
56+
- dependency-name: "*"
57+
update-types:
58+
- version-update:semver-major

.github/workflows/website-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
steps:
99
- uses: actions/checkout@v4
1010
- name: Use Node.js 18.x
11-
uses: actions/setup-node@v2
11+
uses: actions/setup-node@v3
1212
with:
1313
node-version: 18.x
1414
cache: "yarn"

0 commit comments

Comments
 (0)