Skip to content

Commit cc01688

Browse files
committed
global
1 parent ba2793d commit cc01688

File tree

3 files changed

+38
-20
lines changed

3 files changed

+38
-20
lines changed

.github/dependabot.yml

+31-16
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,41 @@
11
version: 2
22
updates:
3-
- package-ecosystem: github-actions
4-
directory: /
5-
schedule:
6-
interval: weekly
7-
groups:
8-
actions-minor:
9-
update-types:
10-
- minor
11-
- patch
12-
133
- package-ecosystem: npm
144
directory: /
155
schedule:
16-
interval: weekly
6+
interval: monthly
177
groups:
188
npm-development:
199
dependency-type: development
20-
update-types:
21-
- minor
22-
- patch
10+
ignore:
11+
- dependency-name: "@types/node"
12+
update-types: "semver:major"
2313
npm-production:
2414
dependency-type: production
25-
update-types:
26-
- patch
15+
16+
- package-ecosystem: dotnet-sdk
17+
directory: /
18+
schedule:
19+
interval: weekly
20+
day: wednesday
21+
time: "09:00"
22+
timezone: Asia/Seoul
23+
assignees:
24+
- na1307
25+
pull-request-branch-name:
26+
separator: _
27+
reviewers:
28+
- na1307
29+
30+
- package-ecosystem: github-actions
31+
directory: /
32+
schedule:
33+
interval: monthly
34+
time: "12:00"
35+
timezone: Asia/Seoul
36+
assignees:
37+
- na1307
38+
pull-request-branch-name:
39+
separator: _
40+
reviewers:
41+
- na1307

.github/workflows/test.yml

-4
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ jobs:
1717
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
1818
- name: Setup .NET
1919
uses: actions/setup-dotnet@v4
20-
with:
21-
dotnet-version: 9.0.x
2220
- name: Setup Node.js
2321
uses: actions/setup-node@v4
2422
with:
@@ -42,8 +40,6 @@ jobs:
4240
uses: actions/checkout@v4
4341
- name: Setup .NET
4442
uses: actions/setup-dotnet@v4
45-
with:
46-
dotnet-version: 9.0.x
4743
- name: GitHub Pages Blazor WASM
4844
uses: ./
4945
with:

global.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"sdk": {
3+
"version": "9.0.101",
4+
"rollForward": "latestPatch",
5+
"allowPrerelease": false
6+
}
7+
}

0 commit comments

Comments
 (0)