From 289f132b77b625139f976d0dd9ffbdafa794e16a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Miku=C5=82a?= Date: Thu, 20 Jun 2024 18:37:32 +0200 Subject: [PATCH] Make sure the toolchain is up-to-date in cross builds --- .github/workflows/cross.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/cross.yml b/.github/workflows/cross.yml index 0a9f4cf6df..3fb8d4a616 100644 --- a/.github/workflows/cross.yml +++ b/.github/workflows/cross.yml @@ -35,6 +35,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Update toolchain + run: rustup update --no-self-update stable && rustup default stable + - name: Add toolchain target run: rustup target add ${{ matrix.target }}