Skip to content

Commit 911aecb

Browse files
committed
Merge remote-tracking branch 'origin/main' into ref-merge/cb559012b7b4abd4232d3d2bb3b9f76779e114d5
2 parents cb55901 + 08fc64e commit 911aecb

File tree

115 files changed

+5331
-1189
lines changed

Some content is hidden

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

115 files changed

+5331
-1189
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
tool: cargo-zigbuild
9898

9999
- name: Install frontend Node
100-
uses: actions/setup-node@v4.1.0
100+
uses: actions/setup-node@v4.2.0
101101
with:
102102
node-version: 20
103103

@@ -240,7 +240,7 @@ jobs:
240240
# For pull-requests, only read from the cache, do not try to push to the
241241
# cache or the image itself
242242
- name: Build
243-
uses: docker/bake-action@v6.2.0
243+
uses: docker/bake-action@v6.3.0
244244
if: github.event_name == 'pull_request'
245245
with:
246246
files: |
@@ -253,7 +253,7 @@ jobs:
253253
254254
- name: Build and push
255255
id: bake
256-
uses: docker/bake-action@v6.2.0
256+
uses: docker/bake-action@v6.3.0
257257
if: github.event_name != 'pull_request'
258258
with:
259259
files: |
@@ -306,7 +306,7 @@ jobs:
306306
uses: actions/checkout@v4.2.2
307307

308308
- name: Install Node
309-
uses: actions/setup-node@v4.1.0
309+
uses: actions/setup-node@v4.2.0
310310
with:
311311
node-version-file: ./tools/syn2mas/.nvmrc
312312

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
uses: actions/checkout@v4.2.2
6262

6363
- name: Install Node
64-
uses: actions/setup-node@v4.1.0
64+
uses: actions/setup-node@v4.2.0
6565
with:
6666
node-version: 20
6767

@@ -86,7 +86,7 @@ jobs:
8686
uses: actions/checkout@v4.2.2
8787

8888
- name: Install Node
89-
uses: actions/setup-node@v4.1.0
89+
uses: actions/setup-node@v4.2.0
9090
with:
9191
node-version: 20
9292

@@ -111,7 +111,7 @@ jobs:
111111
uses: actions/checkout@v4.2.2
112112

113113
- name: Install Node
114-
uses: actions/setup-node@v4.1.0
114+
uses: actions/setup-node@v4.2.0
115115
with:
116116
node-version: 20
117117

@@ -184,7 +184,7 @@ jobs:
184184
uses: mozilla-actions/sccache-action@v0.0.7
185185

186186
- name: Install Node
187-
uses: actions/setup-node@v4.1.0
187+
uses: actions/setup-node@v4.2.0
188188
with:
189189
node-version: 20
190190

@@ -321,7 +321,7 @@ jobs:
321321
tool: cargo-nextest
322322

323323
- name: Install Node
324-
uses: actions/setup-node@v4.1.0
324+
uses: actions/setup-node@v4.2.0
325325
with:
326326
node-version: 20
327327

@@ -367,7 +367,7 @@ jobs:
367367
uses: actions/checkout@v4.2.2
368368

369369
- name: Install Node
370-
uses: actions/setup-node@v4.1.0
370+
uses: actions/setup-node@v4.2.0
371371
with:
372372
node-version-file: ./tools/syn2mas/.nvmrc
373373

.github/workflows/coverage.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: make coverage
3737

3838
- name: Upload to codecov.io
39-
uses: codecov/codecov-action@v5.2.0
39+
uses: codecov/codecov-action@v5.3.1
4040
with:
4141
token: ${{ secrets.CODECOV_TOKEN }}
4242
files: policies/coverage.json
@@ -55,7 +55,7 @@ jobs:
5555
uses: actions/checkout@v4.2.2
5656

5757
- name: Install Node
58-
uses: actions/setup-node@v4.1.0
58+
uses: actions/setup-node@v4.2.0
5959
with:
6060
node-version: 20
6161

@@ -74,7 +74,7 @@ jobs:
7474
run: npm run coverage
7575

7676
- name: Upload to codecov.io
77-
uses: codecov/codecov-action@v5.2.0
77+
uses: codecov/codecov-action@v5.3.1
7878
with:
7979
token: ${{ secrets.CODECOV_TOKEN }}
8080
directory: frontend/coverage/
@@ -117,7 +117,7 @@ jobs:
117117
rustup component add llvm-tools-preview
118118
119119
- name: Install Node
120-
uses: actions/setup-node@v4.1.0
120+
uses: actions/setup-node@v4.2.0
121121
with:
122122
node-version: 20
123123

@@ -161,7 +161,7 @@ jobs:
161161
grcov . --binary-path ./target/debug/deps/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o target/coverage/tests.lcov
162162
163163
- name: Upload to codecov.io
164-
uses: codecov/codecov-action@v5.2.0
164+
uses: codecov/codecov-action@v5.3.1
165165
with:
166166
token: ${{ secrets.CODECOV_TOKEN }}
167167
files: target/coverage/*.lcov

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
tool: mdbook
3737

3838
- name: Install Node
39-
uses: actions/setup-node@v4.1.0
39+
uses: actions/setup-node@v4.2.0
4040
with:
4141
node-version: 20
4242

.github/workflows/release-branch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
uses: actions/checkout@v4.2.2
5151

5252
- name: Install Node
53-
uses: actions/setup-node@v4.1.0
53+
uses: actions/setup-node@v4.2.0
5454
with:
5555
node-version: 20
5656

.github/workflows/translations-download.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v4.2.2
1818

1919
- name: Install Node
20-
uses: actions/setup-node@v4.1.0
20+
uses: actions/setup-node@v4.2.0
2121
with:
2222
node-version: 20
2323

.github/workflows/translations-upload.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@v4.2.2
1717

1818
- name: Install Node
19-
uses: actions/setup-node@v4.1.0
19+
uses: actions/setup-node@v4.2.0
2020
with:
2121
node-version: 20
2222

0 commit comments

Comments
 (0)