Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 96218e9

Browse files
committed
Update to v4 tag
1 parent 3093201 commit 96218e9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout repository
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v3
1212

13-
- name: Install Node v16
14-
uses: actions/setup-node@v2
13+
- name: Install Node v14
14+
uses: actions/setup-node@v3
1515
with:
1616
node-version: 14
1717

@@ -22,7 +22,7 @@ jobs:
2222
run: npm run build
2323

2424
- name: Deploy site
25-
uses: JamesIves/github-pages-deploy-action@4.1.4
25+
uses: JamesIves/github-pages-deploy-action@v4
2626
with:
2727
branch: gh-pages
2828
folder: dist

src/data/MainSource.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ export default new DocsSource({
1010
branch: "docs",
1111
defaultTag: "stable",
1212
branchFilter: branch => !branchBlacklist.has(branch),
13-
tagFilter: tag => semver.gte(tag, "3.0.0"),
13+
tagFilter: tag => semver.gte(tag, "4.0.0"),
1414
defaultFile: { category: "general", id: "welcome" },
1515
});

0 commit comments

Comments
 (0)