Skip to content

Commit 0600947

Browse files
chore(deps): update external major
1 parent 43cefc7 commit 0600947

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout source code
10-
uses: actions/checkout@v2
10+
uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0
1313
- name: Setup Node.js
14-
uses: actions/setup-node@v2
14+
uses: actions/setup-node@v4
1515
with:
1616
node-version: '12'
1717
- name: Install dependencies
@@ -26,12 +26,12 @@ jobs:
2626
with:
2727
repo-token: ${{ secrets.GITHUB_TOKEN }}
2828
- name: Upload code coverage report to workflow as an artifact
29-
uses: actions/upload-artifact@v2
29+
uses: actions/upload-artifact@v4
3030
with:
3131
name: istanbul-code-coverage.zip
3232
path: coverage
3333
- name: Upload code coverage report to codecov.io and comment in pull request
34-
uses: codecov/codecov-action@v1
34+
uses: codecov/codecov-action@v4
3535
- name: Upload Sonar report to sonarcloud.io and comment in pull request
3636
uses: sonarsource/sonarcloud-github-action@master
3737
env:

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout source code
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 0
1616
- name: Setup Node.js
17-
uses: actions/setup-node@v2
17+
uses: actions/setup-node@v4
1818
with:
1919
node-version: 12
2020
- name: Install dependencies
@@ -24,7 +24,7 @@ jobs:
2424
- name: Run tests and do code coverage check
2525
run: npm run test:coverage
2626
- name: Upload code coverage report to codecov.io
27-
uses: codecov/codecov-action@v1
27+
uses: codecov/codecov-action@v4
2828
- name: Upload Sonar report to sonarcloud.io
2929
uses: sonarsource/sonarcloud-github-action@master
3030
env:
@@ -46,7 +46,7 @@ jobs:
4646
- name: Build documentation
4747
run: npm run docs
4848
- name: Publish documentation to github pages
49-
uses: JamesIves/github-pages-deploy-action@3.7.1
49+
uses: JamesIves/github-pages-deploy-action@v4.6.8
5050
with:
5151
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5252
BRANCH: gh-pages-documentation

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -35,27 +35,27 @@
3535
},
3636
"devDependencies": {
3737
"@adobe/eslint-config-editorxp": "^1.0.8",
38-
"@semantic-release/changelog": "^5.0.1",
39-
"@semantic-release/git": "^9.0.0",
40-
"@semantic-release/github": "^7.2.1",
41-
"@types/jest": "^26.0.22",
42-
"@typescript-eslint/eslint-plugin": "^4.22.0",
43-
"@typescript-eslint/parser": "^4.22.0",
44-
"clean-webpack-plugin": "^3.0.0",
38+
"@semantic-release/changelog": "^6.0.0",
39+
"@semantic-release/git": "^10.0.0",
40+
"@semantic-release/github": "^11.0.0",
41+
"@types/jest": "^29.0.0",
42+
"@typescript-eslint/eslint-plugin": "^8.0.0",
43+
"@typescript-eslint/parser": "^8.0.0",
44+
"clean-webpack-plugin": "^4.0.0",
4545
"commitizen": "^4.2.3",
4646
"cz-conventional-changelog": "^3.3.0",
47-
"eslint": "^7.24.0",
47+
"eslint": "^9.0.0",
4848
"eslint-plugin-header": "^3.1.1",
49-
"eslint-plugin-json": "^2.1.2",
49+
"eslint-plugin-json": "^4.0.0",
5050
"eslint-plugin-react": "^7.23.2",
51-
"jest": "^26.6.3",
51+
"jest": "^29.0.0",
5252
"semantic-release": "^17.4.2",
53-
"ts-jest": "^26.5.4",
54-
"ts-loader": "^8.1.0",
53+
"ts-jest": "^29.0.0",
54+
"ts-loader": "^9.0.0",
5555
"typedoc": "^0.22.0",
56-
"typescript": "^4.2.4",
56+
"typescript": "^5.0.0",
5757
"webpack": "^5.34.0",
58-
"webpack-cli": "^4.6.0"
58+
"webpack-cli": "^5.0.0"
5959
},
6060
"files": [
6161
"dist/**/*.{js,ts,map}",

0 commit comments

Comments
 (0)