Skip to content

Commit

Permalink
Update to the Rust 2024 edition
Browse files Browse the repository at this point in the history
This is a test to see what breaks in CI when updating to the 2024
edition. The edition won't actually be released until February of this
year and we won't be able to use it until two releases after that. This
is just a test in the meantime to smooth the future transition.
  • Loading branch information
alexcrichton committed Jan 10, 2025
1 parent de1ad34 commit 26149da
Show file tree
Hide file tree
Showing 6 changed files with 123 additions and 163 deletions.
6 changes: 4 additions & 2 deletions .github/actions/install-rust/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ runs:
range=${{ inputs.msrv_range }}
if [ "${{ inputs.toolchain }}" = "default" ]; then
echo "version=1.$((msrv+range)).0" >> "$GITHUB_OUTPUT"
#echo "version=1.$((msrv+range)).0" >> "$GITHUB_OUTPUT"
echo "version=beta" >> "$GITHUB_OUTPUT"
elif [ "${{ inputs.toolchain }}" = "msrv" ]; then
echo "version=1.$msrv.0" >> "$GITHUB_OUTPUT"
#echo "version=1.$msrv.0" >> "$GITHUB_OUTPUT"
echo "version=beta" >> "$GITHUB_OUTPUT"
elif [ "${{ inputs.toolchain }}" = "wasmtime-ci-pinned-nightly" ]; then
echo "version=nightly-2025-01-09" >> "$GITHUB_OUTPUT"
else
Expand Down
Loading

0 comments on commit 26149da

Please # to comment.