Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/actions/setup-wasm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ inputs:
toolchain:
description: 'Rust toolchain version'
required: false
# FIXME: set to nightly when https://github.com/rust-lang/rust/issues/145652
default: 'nightly-2025-08-18'
default: 'nightly'
wasm-bindgen-version:
description: 'wasm-bindgen-cli version'
required: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
# - ./github/workflows/docs.yaml
# - ./github/workflows/fmt.yaml
# - ./github/workflows/lint.yaml
toolchain: nightly-2025-08-18
toolchain: nightly

- name: Build documentation
run: make docs-build
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
# - ./github/workflows/docs.yaml
# - ./github/workflows/fmt.yaml
# - ./github/workflows/lint.yaml
toolchain: nightly-2025-08-18
toolchain: nightly

- name: Build documentation
run: make docs-build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fmt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# - ./github/workflows/docs.yaml
# - ./github/workflows/fmt.yaml
# - ./github/workflows/lint.yaml
toolchain: nightly-2025-08-18
toolchain: nightly
components: rustfmt
cache-prefix: format-nightly-v0
- uses: taiki-e/install-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
# - ./github/workflows/docs.yaml
# - ./github/workflows/fmt.yaml
# - ./github/workflows/lint.yaml
toolchain: [nightly-2025-08-18]
toolchain: [nightly]
ocaml_version: [4.14.2]
steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# - ./github/workflows/docs.yaml
# - ./github/workflows/fmt.yaml
# - ./github/workflows/lint.yaml
NIGHTLY_RUST_VERSION = "nightly-2025-08-18"
NIGHTLY_RUST_VERSION = "nightly"

# Docker
DOCKER_ORG ?= o1labs
Expand Down
Loading