diff --git a/.github/workflows/rust-toolchain-update.yml b/.github/workflows/rust-toolchain-update.yml index 5257614d33..04d796cfc2 100644 --- a/.github/workflows/rust-toolchain-update.yml +++ b/.github/workflows/rust-toolchain-update.yml @@ -4,6 +4,7 @@ on: schedule: # Run weekly on Mondays at 00:00 UTC - cron: '0 0 * * 1' + pull_request: jobs: check-and-update: @@ -94,7 +95,7 @@ jobs: repo: context.repo.repo, title: `build(rust): Update Rust toolchain to ${newVersion}`, head: branchName, - base: '${{ github.ref_name }}', + base: '${{ github.head_ref }}', body: `Updates Rust toolchain to ${newVersion} (${fullVersion}). **Changes:** diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 6697c67365..78ad751080 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] # We pin the minor version to prevent new Clippy lints from breaking CI. # But, we still want to pick up new patch versions. -channel = "1.89" +channel = "1.88"