Skip to content

Commit 874d634

Browse files
chore(deps): update all dependencies
1 parent 6c8276a commit 874d634

File tree

29 files changed

+763
-686
lines changed

29 files changed

+763
-686
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Radashi",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bookworm",
6+
"image": "mcr.microsoft.com/devcontainers/typescript-node:4-20-bookworm",
77

88
// Features to add to the dev container. More info: https://containers.dev/features.
99
"features": {

.github/workflows/bench-main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
name: Run Benchmarks
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
with:
1313
fetch-depth: 0
1414
- uses: pnpm/action-setup@v4
15-
- uses: actions/setup-node@v4
15+
- uses: actions/setup-node@v6
1616
with:
17-
node-version: '22.x'
17+
node-version: '24.x'
1818
cache: pnpm
1919

2020
- name: Run benchmarks

.github/workflows/bench-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
runs-on: ubuntu-latest
1313
if: github.event.pull_request.draft == false
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
- name: Install pnpm
1919
uses: pnpm/action-setup@v4
2020
- name: Install Node.js
21-
uses: actions/setup-node@v4
21+
uses: actions/setup-node@v6
2222
with:
2323
cache: pnpm
2424

.github/workflows/bundle-impact.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: github.event.pull_request.user.login != 'renovate[bot]' && github.event.pull_request.draft == false
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515

1616
- name: Checkout Pull Request
1717
id: checkout
@@ -35,7 +35,7 @@ jobs:
3535

3636
- name: Install Node.js
3737
if: steps.checkout.outputs.has_changes == 'true'
38-
uses: actions/setup-node@v4
38+
uses: actions/setup-node@v6
3939
with:
4040
cache: pnpm
4141

.github/workflows/check-main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
matrix:
1515
node-version: [18.x, 20.x, 22.x]
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- uses: pnpm/action-setup@v4
1919
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v4
20+
uses: actions/setup-node@v6
2121
with:
2222
node-version: ${{ matrix.node-version }}
2323
cache: pnpm
@@ -28,12 +28,12 @@ jobs:
2828
name: Validate
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232
- uses: pnpm/action-setup@v4
33-
- uses: actions/setup-node@v4
33+
- uses: actions/setup-node@v6
3434
with:
3535
registry-url: 'https://registry.npmjs.org'
36-
node-version: '22.x'
36+
node-version: '24.x'
3737
cache: pnpm
3838
- run: pnpm install
3939
- name: Lint

.github/workflows/check-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
env:
1414
PR_TITLE: '${{ github.event.pull_request.title }}'
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0
1919
- uses: pnpm/action-setup@v4
20-
- uses: actions/setup-node@v4
20+
- uses: actions/setup-node@v6
2121
with:
22-
node-version: '22.x'
22+
node-version: '24.x'
2323
cache: pnpm
2424
- run: pnpm install
2525
- run: pnpm install @commitlint/[email protected]

.github/workflows/prerelease-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
if: ${{ contains(github.event.pull_request.labels.*.name, 'prerelease') && github.event.pull_request.state == 'open' && github.event.pull_request.draft == false && github.event.pull_request.mergeable_state == 'clean' }}
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515
- uses: pnpm/action-setup@v4
16-
- uses: actions/setup-node@v4
16+
- uses: actions/setup-node@v6
1717
with:
1818
registry-url: 'https://registry.npmjs.org'
19-
node-version: '22.x'
19+
node-version: '24.x'
2020
cache: pnpm
2121

2222
- name: Merge PR into target branch

.github/workflows/publish-beta.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
matrix:
1515
node-version: [18.x, 20.x, 22.x]
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- uses: pnpm/action-setup@v4
1919
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v4
20+
uses: actions/setup-node@v6
2121
with:
2222
node-version: ${{ matrix.node-version }}
2323
cache: pnpm
@@ -28,12 +28,12 @@ jobs:
2828
name: Validate
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232
- uses: pnpm/action-setup@v4
33-
- uses: actions/setup-node@v4
33+
- uses: actions/setup-node@v6
3434
with:
3535
registry-url: 'https://registry.npmjs.org'
36-
node-version: '22.x'
36+
node-version: '24.x'
3737
cache: pnpm
3838
- run: pnpm install
3939
- name: Lint
@@ -49,14 +49,14 @@ jobs:
4949
permissions:
5050
id-token: write
5151
steps:
52-
- uses: actions/checkout@v4
52+
- uses: actions/checkout@v5
5353
with:
5454
fetch-depth: 0
5555
- uses: pnpm/action-setup@v4
56-
- uses: actions/setup-node@v4
56+
- uses: actions/setup-node@v6
5757
with:
5858
registry-url: 'https://registry.npmjs.org'
59-
node-version: '22.x'
59+
node-version: '24.x'
6060
cache: pnpm
6161
- run: pnpm install
6262
- run: pnpm build

.github/workflows/publish-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
build-and-deploy:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 0
2222
- uses: pnpm/action-setup@v4
23-
- uses: actions/setup-node@v4
23+
- uses: actions/setup-node@v6
2424
with:
2525
registry-url: 'https://registry.npmjs.org'
26-
node-version: '22.x'
26+
node-version: '24.x'
2727
cache: pnpm
2828

2929
- name: Publish

.github/workflows/publish-latest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
permissions:
1212
id-token: write
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717
- uses: pnpm/action-setup@v4
18-
- uses: actions/setup-node@v4
18+
- uses: actions/setup-node@v6
1919
with:
2020
registry-url: 'https://registry.npmjs.org'
21-
node-version: '22.x'
21+
node-version: '24.x'
2222
cache: pnpm
2323
- run: pnpm install
2424
- run: pnpm build

0 commit comments

Comments
 (0)