Skip to content

Commit 4c1fc71

Browse files
authored
Merge pull request #1431 from o1-labs/dw/use-latest-nightly
CI/Makefile: use the latest nightly
2 parents 12e1cb3 + f1ee12c commit 4c1fc71

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.github/actions/setup-wasm/action.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ inputs:
44
toolchain:
55
description: 'Rust toolchain version'
66
required: false
7-
# FIXME: set to nightly when https://github.com/rust-lang/rust/issues/145652
8-
default: 'nightly-2025-08-18'
7+
default: 'nightly'
98
wasm-bindgen-version:
109
description: 'wasm-bindgen-cli version'
1110
required: false

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
# - ./github/workflows/docs.yaml
5050
# - ./github/workflows/fmt.yaml
5151
# - ./github/workflows/lint.yaml
52-
toolchain: nightly-2025-08-18
52+
toolchain: nightly
5353

5454
- name: Build documentation
5555
run: make docs-build
@@ -108,7 +108,7 @@ jobs:
108108
# - ./github/workflows/docs.yaml
109109
# - ./github/workflows/fmt.yaml
110110
# - ./github/workflows/lint.yaml
111-
toolchain: nightly-2025-08-18
111+
toolchain: nightly
112112

113113
- name: Build documentation
114114
run: make docs-build

.github/workflows/fmt.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# - ./github/workflows/docs.yaml
2020
# - ./github/workflows/fmt.yaml
2121
# - ./github/workflows/lint.yaml
22-
toolchain: nightly-2025-08-18
22+
toolchain: nightly
2323
components: rustfmt
2424
cache-prefix: format-nightly-v0
2525
- uses: taiki-e/install-action@v2

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
# - ./github/workflows/docs.yaml
5656
# - ./github/workflows/fmt.yaml
5757
# - ./github/workflows/lint.yaml
58-
toolchain: [nightly-2025-08-18]
58+
toolchain: [nightly]
5959
ocaml_version: [4.14.2]
6060
steps:
6161
- uses: actions/checkout@v5

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# - ./github/workflows/docs.yaml
77
# - ./github/workflows/fmt.yaml
88
# - ./github/workflows/lint.yaml
9-
NIGHTLY_RUST_VERSION = "nightly-2025-08-18"
9+
NIGHTLY_RUST_VERSION = "nightly"
1010

1111
# Docker
1212
DOCKER_ORG ?= o1labs

0 commit comments

Comments
 (0)