Skip to content

Commit 7d52a4d

Browse files
committed
chore: bump version to 1.2.72
1 parent 83a06d3 commit 7d52a4d

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ jobs:
6060
with:
6161
persist-credentials: false
6262
submodules: recursive
63+
- name: Install Rust
64+
run: rustup update "nightly" --no-self-update && rustup default "nightly"
6365
- name: Install dist
6466
# we specify bash to get pipefail; it guards against the `curl` command
6567
# failing. otherwise `sh` won't catch that `curl` returned non-0
@@ -127,6 +129,8 @@ jobs:
127129
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
128130
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
129131
fi
132+
- name: Use rustup to set correct Rust version
133+
run: rustup update "nightly" --no-self-update && rustup default "nightly"
130134
- name: Install dist
131135
run: ${{ matrix.install_dist.run }}
132136
# Get the dist-manifest
@@ -179,6 +183,8 @@ jobs:
179183
with:
180184
persist-credentials: false
181185
submodules: recursive
186+
- name: Install Rust
187+
run: rustup update "nightly" --no-self-update && rustup default "nightly"
182188
- name: Install cached dist
183189
uses: actions/download-artifact@v4
184190
with:
@@ -229,6 +235,8 @@ jobs:
229235
with:
230236
persist-credentials: false
231237
submodules: recursive
238+
- name: Install Rust
239+
run: rustup update "nightly" --no-self-update && rustup default "nightly"
232240
- name: Install cached dist
233241
uses: actions/download-artifact@v4
234242
with:

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rce-engine"
3-
version = "1.2.71"
3+
version = "1.2.72"
44
edition = "2024"
55
authors = ["ToolKitHub <[email protected]>"]
66
description = "A secure service for running untrusted code inside isolated Docker containers via a simple HTTP API"

dist-workspace.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ targets = ["x86_64-unknown-linux-gnu"]
1515
install-path = "~/rce/bin"
1616
# Whether to install an updater program
1717
install-updater = false
18+
# The preferred Rust toolchain to use in CI (rustup toolchain syntax)
19+
rust-toolchain-version = "nightly"

0 commit comments

Comments
 (0)