Skip to content

Commit 6170b92

Browse files
committed
merge
2 parents 3e362ad + 5b146d3 commit 6170b92

248 files changed

Lines changed: 6767 additions & 5607 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ body:
7676
label: Account config
7777
description: If your issue only happens when logged in, please provide your config. To export your config, go to the Settings page, scroll all the way down to `import/export settings` and click `export`.
7878
placeholder: |
79-
Miodec
8079
{"theme":"cyberspace","showKeyTips":false,"showLiveWpm":false,"showTimerProgress":false, ... "smoothCaret":true}
8180
validations:
8281
required: false

.github/workflows/check-formatting.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323

2424
steps:
2525
- name: Full checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727

2828
- name: Set up Node.js
29-
uses: actions/setup-node@v4
29+
uses: actions/setup-node@v6
3030
with:
3131
node-version: ${{ env.NODE_VERSION }}
3232

3333
- name: Setup pnpm
34-
uses: pnpm/action-setup@v4
34+
uses: pnpm/action-setup@v6
3535
with:
3636
version: ${{ env.PNPM_VERSION }}
3737

.github/workflows/check-todo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919

2020
- name: Check for Todos
2121
uses: phntmxyz/pr_todo_checker@v1

.github/workflows/ci-failure-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
1414
steps:
1515
- name: Download workflow artifact
16-
uses: actions/download-artifact@v4
16+
uses: actions/download-artifact@v8
1717
with:
1818
github-token: ${{ secrets.GITHUB_TOKEN }}
1919
run-id: ${{ github.event.workflow_run.id }}

.github/workflows/claude-code-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828
with:
2929
fetch-depth: 1
3030

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
actions: read # Required for Claude to read CI results on PRs
2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232
with:
3333
fetch-depth: 1
3434

.github/workflows/fix-formatting.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ jobs:
1818
if: github.event.label.name == 'format'
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222
with:
2323
repository: ${{ github.event.pull_request.head.repo.full_name}}
2424
ref: ${{ github.event.pull_request.head.sha }}
2525

2626
- name: Set up Node.js
27-
uses: actions/setup-node@v4
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: ${{ env.NODE_VERSION }}
3030

3131
- name: Setup pnpm
32-
uses: pnpm/action-setup@v4
32+
uses: pnpm/action-setup@v6
3333
with:
3434
version: ${{ env.PNPM_VERSION }}
3535

.github/workflows/monkey-ci.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Full checkout
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v6
3636
# paths filter doesn't need checkout on pr
3737
if: github.event_name != 'pull_request'
3838

@@ -74,13 +74,13 @@ jobs:
7474
if: needs.pre-ci.outputs.should-build-be == 'true' || needs.pre-ci.outputs.should-build-fe == 'true' || needs.pre-ci.outputs.should-build-pkg == 'true' || needs.pre-ci.outputs.assets-or-styles == 'true' || contains(github.event.pull_request.labels.*.name, 'force-full-ci')
7575
steps:
7676
- name: Checkout pnpm-lock
77-
uses: actions/checkout@v4
77+
uses: actions/checkout@v6
7878
with:
7979
sparse-checkout: |
8080
pnpm-lock.yaml
8181
8282
- name: Setup pnpm
83-
uses: pnpm/action-setup@v4
83+
uses: pnpm/action-setup@v6
8484
with:
8585
version: ${{ env.PNPM_VERSION }}
8686

@@ -91,7 +91,7 @@ jobs:
9191
9292
- name: Cache node modules
9393
id: cache-pnpm
94-
uses: actions/cache@v4
94+
uses: actions/cache@v5
9595
env:
9696
cache-name: node-modules
9797
with:
@@ -101,11 +101,11 @@ jobs:
101101

102102
- if: ${{ steps.cache-pnpm.outputs.cache-hit != 'true' }}
103103
name: Full checkout
104-
uses: actions/checkout@v4
104+
uses: actions/checkout@v6
105105

106106
- if: ${{ steps.cache-pnpm.outputs.cache-hit != 'true' }}
107107
name: Set up Node.js
108-
uses: actions/setup-node@v4
108+
uses: actions/setup-node@v6
109109
with:
110110
node-version: ${{ env.NODE_VERSION }}
111111

@@ -119,19 +119,19 @@ jobs:
119119
runs-on: ubuntu-latest
120120
if: needs.pre-ci.outputs.should-build-be == 'true' || needs.pre-ci.outputs.should-build-pkg == 'true' || contains(github.event.pull_request.labels.*.name, 'force-full-ci')
121121
steps:
122-
- uses: actions/checkout@v4
122+
- uses: actions/checkout@v6
123123
with:
124124
sparse-checkout: |
125125
backend
126126
packages
127127
128128
- name: Set up Node.js
129-
uses: actions/setup-node@v4
129+
uses: actions/setup-node@v6
130130
with:
131131
node-version: ${{ env.NODE_VERSION }}
132132

133133
- name: Setup pnpm
134-
uses: pnpm/action-setup@v4
134+
uses: pnpm/action-setup@v6
135135
with:
136136
version: ${{ env.PNPM_VERSION }}
137137

@@ -142,7 +142,7 @@ jobs:
142142
143143
- name: Cache node modules
144144
id: cache-pnpm
145-
uses: actions/cache@v4
145+
uses: actions/cache@v5
146146
env:
147147
cache-name: node-modules
148148
with:
@@ -167,14 +167,14 @@ jobs:
167167
runs-on: ubuntu-latest
168168
if: needs.pre-ci.outputs.should-build-fe == 'true' || needs.pre-ci.outputs.should-build-pkg == 'true' || contains(github.event.pull_request.labels.*.name, 'force-full-ci')
169169
steps:
170-
- uses: actions/checkout@v4
170+
- uses: actions/checkout@v6
171171
with:
172172
sparse-checkout: |
173173
frontend
174174
packages
175175
176176
- name: Set up Node.js
177-
uses: actions/setup-node@v4
177+
uses: actions/setup-node@v6
178178
with:
179179
node-version: ${{ env.NODE_VERSION }}
180180

@@ -183,7 +183,7 @@ jobs:
183183
run: mv ./firebase-config-example.ts ./firebase-config.ts && cp ./firebase-config.ts ./firebase-config-live.ts
184184

185185
- name: Setup pnpm
186-
uses: pnpm/action-setup@v4
186+
uses: pnpm/action-setup@v6
187187
with:
188188
version: ${{ env.PNPM_VERSION }}
189189

@@ -194,7 +194,7 @@ jobs:
194194
195195
- name: Cache node modules
196196
id: cache-pnpm
197-
uses: actions/cache@v4
197+
uses: actions/cache@v5
198198
env:
199199
cache-name: node-modules
200200
with:
@@ -219,7 +219,7 @@ jobs:
219219
runs-on: ubuntu-latest
220220
if: needs.pre-ci.outputs.assets-or-styles == 'true' || contains(github.event.pull_request.labels.*.name, 'force-full-ci')
221221
steps:
222-
- uses: actions/checkout@v4
222+
- uses: actions/checkout@v6
223223
with:
224224
sparse-checkout: |
225225
frontend
@@ -245,12 +245,12 @@ jobs:
245245
- 'frontend/static/sounds/**'
246246
247247
- name: Set up Node.js
248-
uses: actions/setup-node@v4
248+
uses: actions/setup-node@v6
249249
with:
250250
node-version: ${{ env.NODE_VERSION }}
251251

252252
- name: Setup pnpm
253-
uses: pnpm/action-setup@v4
253+
uses: pnpm/action-setup@v6
254254
with:
255255
version: ${{ env.PNPM_VERSION }}
256256

@@ -261,7 +261,7 @@ jobs:
261261
262262
- name: Cache node modules
263263
id: cache-pnpm
264-
uses: actions/cache@v4
264+
uses: actions/cache@v5
265265
env:
266266
cache-name: node-modules
267267
with:
@@ -297,18 +297,18 @@ jobs:
297297
runs-on: ubuntu-latest
298298
if: needs.pre-ci.outputs.should-build-pkg == 'true' || contains(github.event.pull_request.labels.*.name, 'force-full-ci')
299299
steps:
300-
- uses: actions/checkout@v4
300+
- uses: actions/checkout@v6
301301
with:
302302
sparse-checkout: |
303303
packages
304304
305305
- name: Set up Node.js
306-
uses: actions/setup-node@v4
306+
uses: actions/setup-node@v6
307307
with:
308308
node-version: ${{ env.NODE_VERSION }}
309309

310310
- name: Setup pnpm
311-
uses: pnpm/action-setup@v4
311+
uses: pnpm/action-setup@v6
312312
with:
313313
version: ${{ env.PNPM_VERSION }}
314314

@@ -319,7 +319,7 @@ jobs:
319319
320320
- name: Cache node modules
321321
id: cache-pnpm
322-
uses: actions/cache@v4
322+
uses: actions/cache@v5
323323
env:
324324
cache-name: node-modules
325325
with:
@@ -351,7 +351,7 @@ jobs:
351351
run: echo $PR_NUM > pr_num.txt
352352

353353
- name: Upload the PR number
354-
uses: actions/upload-artifact@v4
354+
uses: actions/upload-artifact@v7
355355
with:
356356
name: pr_num
357357
path: ./pr_num.txt

.github/workflows/publish-docker-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Check out the repo
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323
- name: Set up QEMU
2424
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3
2525
- name: Set up Docker Buildx

.github/workflows/update-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
run: echo $LABELS_JSON > write-labels.json
9595

9696
- name: Upload the JSON file
97-
uses: actions/upload-artifact@v4
97+
uses: actions/upload-artifact@v7
9898
with:
9999
name: labels
100100
path: ./write-labels.json

0 commit comments

Comments
 (0)