Skip to content

Commit 989f7f7

Browse files
committed
Update rust installation in CI
* Change MSRV window back to 2 now that oss-fuzz is resolved * Update the nightly to the latest nightly
1 parent 2891f36 commit 989f7f7

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

.github/actions/install-rust/action.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,7 @@ inputs:
99
msrv_range:
1010
description: 'Versions later-than-latest-Rust the MSRV supports'
1111
required: false
12-
# Note that this is currently set to 3 as the MSRV is 1.78 and current
13-
# stable is 1.81. Currently MSRV cannot be updated as it would break the
14-
# build on OSS-Fuzz which hasn't updated its Rust compiler in quite some time.
15-
#
16-
# Updating OSS-Fuzz is being done in
17-
# https://github.com/google/oss-fuzz/pull/12365 but it's taking some time,
18-
# so for now this'll get bumped instead of MSRV while we wait for the update
19-
# to happen.
20-
default: '3'
12+
default: '2'
2113

2214
runs:
2315
using: composite
@@ -36,7 +28,7 @@ runs:
3628
elif [ "${{ inputs.toolchain }}" = "msrv" ]; then
3729
echo "version=1.$msrv.0" >> "$GITHUB_OUTPUT"
3830
elif [ "${{ inputs.toolchain }}" = "wasmtime-ci-pinned-nightly" ]; then
39-
echo "version=nightly-2024-10-01" >> "$GITHUB_OUTPUT"
31+
echo "version=nightly-2024-10-22" >> "$GITHUB_OUTPUT"
4032
else
4133
echo "version=${{ inputs.toolchain }}" >> "$GITHUB_OUTPUT"
4234
fi

0 commit comments

Comments
 (0)