Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/actions/install-risc0/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
uses: ubicloud/cache@v4
with:
path: ~/.risc0
key: risc0-${{ runner.os }}-cargo-risczero-3.0.3-r0vm-3.0.3-rust-1.88.0
key: risc0-${{ runner.os }}-cargo-risczero-3.0.3-r0vm-3.0.3-rust-1.91.1

- name: Install risc0
if: steps.cache-risc0.outputs.cache-hit != 'true'
Expand All @@ -27,7 +27,7 @@ runs:
rzup install cargo-risczero 3.0.3
rzup install cpp
rzup install r0vm 3.0.3
rzup install rust 1.88.0
rzup install rust 1.91.1

- name: Add risc0 to PATH
shell: bash
Expand All @@ -38,4 +38,4 @@ runs:
run: |
rzup default cargo-risczero 3.0.3
rzup default r0vm 3.0.3
rzup default rust 1.88.0
rzup default rust 1.91.1
4 changes: 2 additions & 2 deletions .github/workflows/build_and_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
- name: Install Rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
rustup install 1.88.0
rustup default 1.88.0
rustup install 1.91.1
rustup default 1.91.1
rustup toolchain install 1.88-x86_64-unknown-linux-gnu

- name: Install risc0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:
runs-on: ubicloud-standard-30
steps:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@1.88.0
- uses: dtolnay/rust-toolchain@1.91.1
with:
components: llvm-tools-preview
- name: Rust Cache
Expand Down Expand Up @@ -380,7 +380,7 @@ jobs:
- uses: actions/checkout@v5
- uses: rui314/setup-mold@v1
- name: Toolchain
uses: dtolnay/rust-toolchain@1.88.0
uses: dtolnay/rust-toolchain@1.91.1
- name: Rust Cache
uses: ubicloud/rust-cache@v2
- name: Setup env
Expand Down Expand Up @@ -539,7 +539,7 @@ jobs:

proving-stats:
name: Proving stats
runs-on: ubicloud-standard-2
runs-on: ubicloud-standard-4
needs: [build, docker-setup]
if: github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'guest-code')
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
version: "23.2"
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Toolchain
uses: dtolnay/rust-toolchain@1.88.0
uses: dtolnay/rust-toolchain@1.91.1
with:
override: true
components: rustfmt, clippy
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
- name: Install Rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
rustup install 1.88.0
rustup default 1.88.0
rustup install 1.91.1
rustup default 1.91.1

- name: Build Project
env:
Expand Down Expand Up @@ -55,8 +55,8 @@ jobs:
- name: Install Rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
rustup install 1.88.0
rustup default 1.88.0
rustup install 1.91.1
rustup default 1.91.1

- name: Build Project
env:
Expand Down Expand Up @@ -85,8 +85,8 @@ jobs:
- name: Install Rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
rustup install 1.88.0
rustup default 1.88.0
rustup install 1.91.1
rustup default 1.91.1

- name: Build Project
env:
Expand Down
Loading
Loading