From 0006e3d64a2c5827bb852a70005ad9e9b0443309 Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Tue, 5 Dec 2023 18:21:28 -0800 Subject: [PATCH] CI: Run `rustup --version` as the first step in `package` job. Be consistent with the other jobs. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2d969afdd..bac87da2d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -112,14 +112,14 @@ jobs: runs-on: windows-latest steps: + - run: rustup --version + - uses: briansmith/actions-checkout@v4 with: persist-credentials: false - run: ./mk/install-build-tools.ps1 - - run: rustup --version - - run: echo "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\Llvm\x64\bin" >> $GITHUB_PATH shell: bash