diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-03-10 05:55:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-10 11:55:51 +0100 |
commit | a7a804919d8bde1a45c9a95b74d949401401a32f (patch) | |
tree | 9fe79608068e02f6d13b4b27be3e18d61c15058b | |
parent | 857393d934aed9428df0188a72ca31c8e2a1a03f (diff) |
chore(ci): update other workflows to use cargo-toolchain.toml (#18109)
I accidentally missed these in #18104
-rw-r--r-- | .github/workflows/bench_cron.yml | 2 | ||||
-rw-r--r-- | .github/workflows/cargo_publish.yml | 2 | ||||
-rw-r--r-- | .github/workflows/version_bump.yml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/bench_cron.yml b/.github/workflows/bench_cron.yml index 57a794aaf..282e96bfe 100644 --- a/.github/workflows/bench_cron.yml +++ b/.github/workflows/bench_cron.yml @@ -29,7 +29,7 @@ jobs: submodules: true persist-credentials: false - - uses: dtolnay/rust-toolchain@stable + - uses: dsherret/rust-toolchain-file@v1 - name: Build release run: cargo build --release --locked --all-targets diff --git a/.github/workflows/cargo_publish.yml b/.github/workflows/cargo_publish.yml index 60f425d7e..86280d826 100644 --- a/.github/workflows/cargo_publish.yml +++ b/.github/workflows/cargo_publish.yml @@ -25,7 +25,7 @@ jobs: token: ${{ secrets.DENOBOT_PAT }} submodules: recursive - - uses: dtolnay/rust-toolchain@stable + - uses: dsherret/rust-toolchain-file@v1 - name: Install deno uses: denoland/setup-deno@v1 diff --git a/.github/workflows/version_bump.yml b/.github/workflows/version_bump.yml index 580c38983..11102964b 100644 --- a/.github/workflows/version_bump.yml +++ b/.github/workflows/version_bump.yml @@ -36,7 +36,7 @@ jobs: token: ${{ secrets.DENOBOT_PAT }} submodules: recursive - - uses: dtolnay/rust-toolchain@stable + - uses: dsherret/rust-toolchain-file@v1 - name: Install deno uses: denoland/setup-deno@v1 |