From 140a3191383263f24af677cf2118e9231cbe59d0 Mon Sep 17 00:00:00 2001 From: Lukas Wirth Date: Fri, 16 May 2025 16:49:05 +0200 Subject: [PATCH] ci: Run metrics on the beta channel This way we can catch regressions from upstream earlier --- .github/workflows/metrics.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/metrics.yaml b/.github/workflows/metrics.yaml index a4146d6021..dc2f432bbc 100644 --- a/.github/workflows/metrics.yaml +++ b/.github/workflows/metrics.yaml @@ -18,9 +18,9 @@ jobs: steps: - name: Install Rust toolchain run: | - rustup update --no-self-update stable - rustup default stable - rustup component add --toolchain stable rust-src + rustup update --no-self-update beta + rustup default beta + rustup component add --toolchain beta rust-src - name: Checkout repository uses: actions/checkout@v4 @@ -61,9 +61,9 @@ jobs: steps: - name: Install Rust toolchain run: | - rustup update --no-self-update stable - rustup default stable - rustup component add --toolchain stable rust-src + rustup update --no-self-update beta + rustup default beta + rustup component add --toolchain beta rust-src - name: Checkout repository uses: actions/checkout@v4