Skip to content

Commit 5a4c740

Browse files
bumping mina
1 parent 6f43672 commit 5a4c740

File tree

16 files changed

+118
-70
lines changed

16 files changed

+118
-70
lines changed

.config/cspell.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,17 @@
44
// language - current active spelling language
55
"language": "en",
66
// words - list of words to be always considered correct
7-
"words": ["tarides", "nixbuild", "stefanzweifel", "ACMRT", "Oxlint"],
7+
"words": [
8+
"ACMRT",
9+
"cachedir",
10+
"influxdata",
11+
"jstat",
12+
"libsodium",
13+
"nixbuild",
14+
"Oxlint",
15+
"stefanzweifel",
16+
"tarides"
17+
],
818
// flagWords - list of words to be always considered incorrect
919
// This is useful for offensive words and common spelling errors.
1020
// For example "hte" should be "the"

.github/actions/build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ runs:
2626
- name: Setup Node
2727
uses: actions/setup-node@v4
2828
with:
29-
node-version: '20'
29+
node-version: '22'
3030

3131
- name: use proof_systems_commit if provided
3232
if: ${{ inputs.proof_systems_commit != '' }}

.github/actions/live-tests-shared/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ runs:
1616
- name: Setup Node
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version: '20'
19+
node-version: '22'
2020
- name: Build o1js and execute tests
2121
env:
2222
USE_CUSTOM_LOCAL_NETWORK: 'true'

.github/workflows/checks.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
Lint-and-Format:
6464
strategy:
6565
matrix:
66-
node: [20]
66+
node: [22]
6767
if: github.event.pull_request.labels.*.name != 'skip-lint'
6868
runs-on: ubuntu-latest
6969

@@ -277,8 +277,7 @@ jobs:
277277
- name: Setup Node.JS ${{ matrix.node }}
278278
uses: actions/setup-node@v4
279279
with:
280-
node-version: 20
281-
# TODO matrixing this requires changing branch protection rules
280+
node-version: 22
282281

283282
- name: Restore npm cache
284283
uses: actions/cache@v4

.github/workflows/push_main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
Build-Doc:
1919
strategy:
2020
matrix:
21-
node: [20]
21+
node: [22]
2222
if: github.ref == 'refs/heads/main'
2323
runs-on: ubuntu-latest
2424
steps:
@@ -74,7 +74,7 @@ jobs:
7474
Pkg-pr-new:
7575
strategy:
7676
matrix:
77-
node: [20]
77+
node: [22]
7878

7979
runs-on: [ubuntu-latest]
8080
steps:
@@ -118,7 +118,7 @@ jobs:
118118
- name: Setup Node
119119
uses: actions/setup-node@v4
120120
with:
121-
node-version: '20'
121+
node-version: '22'
122122

123123
- name: Build o1js
124124
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Node.js
2626
uses: actions/setup-node@v4
2727
with:
28-
node-version: '18'
28+
node-version: '22'
2929

3030
- name: Configure Git
3131
run: |

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
(lang dune 3.3)
1+
(lang dune 3.1)

flake.lock

Lines changed: 82 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"snarky-run": "src/build/run.js"
4646
},
4747
"engines": {
48-
"node": ">=18.14.0"
48+
"node": ">=22.19.5"
4949
},
5050
"scripts": {
5151
"build:dev": "./scripts/build/build-dev.sh",
@@ -63,8 +63,8 @@
6363
"prepublish:full": "./scripts/prepublish/prepublish-full.sh",
6464
"regression:dump-vks": "./scripts/tests/dump-vks.sh",
6565
"regression:check-vks": "./scripts/tests/check-vks.sh",
66-
"format": "prettier --write --ignore-unknown",
67-
"format:check": "prettier --check --ignore-unknown",
66+
"format": "prettier --write --ignore-unknown --no-error-on-unmatched-pattern",
67+
"format:check": "prettier --check --ignore-unknown --no-error-on-unmatched-pattern",
6868
"format:md": "prettier --config .prettierrc.md.cjs --write '**/*.md'",
6969
"format:md:check": "prettier --config .prettierrc.md.cjs --check '**/*.md'",
7070
"clean": "./scripts/clean/clean.sh",

src/bindings/crypto/.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
constants.ts linguist-generated=true

0 commit comments

Comments
 (0)