Skip to content

Commit 9a18f36

Browse files
authored
feat(deps): Update dependencies 2023.12.22 (#112)
1 parent c7a061a commit 9a18f36

File tree

14 files changed

+4763
-5616
lines changed

14 files changed

+4763
-5616
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
---
21
name: CI
32

43
on:
54
push:
5+
branches: [main]
6+
pull_request:
67
workflow_call:
78

89
concurrency:
@@ -14,10 +15,10 @@ jobs:
1415
runs-on: ubuntu-latest
1516
strategy:
1617
matrix:
17-
node: [16, 17, 18, 19, 20]
18+
node: [18, 19, 20, 21]
1819
steps:
19-
- uses: actions/checkout@v3
20-
- uses: actions/setup-node@v3
20+
- uses: actions/checkout@v4
21+
- uses: actions/setup-node@v4
2122
with:
2223
node-version: ${{ matrix.node }}
2324
cache: yarn

.github/workflows/pages.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
---
21
name: Pages
32

43
on:
@@ -19,19 +18,19 @@ jobs:
1918
runs-on: ubuntu-latest
2019

2120
steps:
22-
- uses: actions/checkout@v3
23-
- uses: actions/setup-node@v3
21+
- uses: actions/checkout@v4
22+
- uses: actions/setup-node@v4
2423
with:
2524
node-version-file: '.nvmrc'
2625
cache: yarn
2726
- run: yarn install --immutable
2827
- run: yarn docs
29-
- uses: actions/configure-pages@v3
28+
- uses: actions/configure-pages@v4
3029
- uses: actions/jekyll-build-pages@v1
3130
with:
3231
source: ./
3332
destination: ./_site
34-
- uses: actions/upload-pages-artifact@v2
33+
- uses: actions/upload-pages-artifact@v3
3534

3635
deploy:
3736
environment:
@@ -41,5 +40,5 @@ jobs:
4140
needs: build
4241

4342
steps:
44-
- uses: actions/deploy-pages@v2
43+
- uses: actions/deploy-pages@v4
4544
id: deployment

.github/workflows/release.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
---
21
name: Release
32

43
on:
@@ -14,19 +13,18 @@ jobs:
1413

1514
deploy:
1615
runs-on: ubuntu-latest
17-
needs: [build]
18-
16+
needs: build
1917
permissions:
2018
contents: write
2119
issues: write
2220
pull-requests: write
2321
id-token: write
2422

2523
steps:
26-
- uses: actions/checkout@v3
27-
- uses: actions/setup-node@v3
24+
- uses: actions/checkout@v4
25+
- uses: actions/setup-node@v4
2826
with:
29-
node-version-file: '.nvmrc'
27+
node-version-file: .nvmrc
3028
cache: yarn
3129
- run: yarn install --immutable
3230
- run: yarn build
@@ -37,4 +35,4 @@ jobs:
3735

3836
pages:
3937
uses: ./.github/workflows/pages.yml
40-
needs: [deploy]
38+
needs: deploy

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.5.0
1+
21.5.0

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Lines changed: 0 additions & 541 deletions
This file was deleted.

.yarn/releases/yarn-3.6.1.cjs

Lines changed: 0 additions & 874 deletions
This file was deleted.

.yarn/releases/yarn-4.0.2.cjs

Lines changed: 893 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1+
compressionLevel: mixed
2+
3+
enableGlobalCache: false
4+
15
nodeLinker: node-modules
26

37
plugins:
4-
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
5-
spec: "@yarnpkg/plugin-interactive-tools"
6-
- path: .yarn/plugins/@yarnpkg/plugin-engines.cjs
8+
- checksum: 8f13acff9aef76f5fbfb5474b6d23b14ed3f49258cf4e344229e3515e42f4d6990e3c51b9ab176aa46c407fb9ca97fc0902c6400db5a44e9994d0b53512f3aed
9+
path: .yarn/plugins/@yarnpkg/plugin-engines.cjs
710
spec: "https://raw.githubusercontent.com/devoto13/yarn-plugin-engines/main/bundles/%40yarnpkg/plugin-engines.js"
811

9-
yarnPath: .yarn/releases/yarn-3.6.1.cjs
12+
yarnPath: .yarn/releases/yarn-4.0.2.cjs

examples/jest/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
"devDependencies": {
99
"@assertive-ts/core": "workspace:^",
1010
"@examples/symbol-plugin": "workspace:^",
11-
"@types/jest": "^29.5.3",
12-
"@types/node": "^20.4.8",
13-
"jest": "^29.6.2",
11+
"@types/jest": "^29.5.11",
12+
"@types/node": "^20.10.5",
13+
"jest": "^29.7.0",
1414
"ts-jest": "^29.1.1",
15-
"ts-node": "^10.9.1",
16-
"typescript": "^5.1.6"
15+
"ts-node": "^10.9.2",
16+
"typescript": "^5.3.3"
1717
}
1818
}

examples/mocha/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"devDependencies": {
99
"@assertive-ts/core": "workspace:^",
1010
"@examples/symbol-plugin": "workspace:^",
11-
"@types/mocha": "^10.0.1",
12-
"@types/node": "^20.4.8",
11+
"@types/mocha": "^10.0.6",
12+
"@types/node": "^20.10.5",
1313
"mocha": "^10.2.0",
14-
"ts-node": "^10.9.1",
15-
"typescript": "^5.1.6"
14+
"ts-node": "^10.9.2",
15+
"typescript": "^5.3.3"
1616
}
1717
}

0 commit comments

Comments
 (0)