From dac568c95c78121b5c74d8d7984d241c0c55e426 Mon Sep 17 00:00:00 2001 From: Noah Lev Date: Wed, 3 Nov 2021 12:22:15 -0700 Subject: [PATCH] Ensure date-check cron job is using latest stable Rust This should prevent future failures like this one [1]. [1]: https://github.com/rust-lang/rustc-dev-guide/runs/4067460927?check_suite_focus=true --- .github/workflows/date-check.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/date-check.yml b/.github/workflows/date-check.yml index c787da07..b808876a 100644 --- a/.github/workflows/date-check.yml +++ b/.github/workflows/date-check.yml @@ -17,6 +17,10 @@ jobs: - name: Checkout repo uses: actions/checkout@v2 + - name: Ensure Rust is up-to-date + run: | + rustup update stable + - name: Run `date-check` working-directory: ci/date-check run: |