From 2a7b2fc9f548576aab1a6f29e077208bc3852d78 Mon Sep 17 00:00:00 2001 From: Putta Khunchalee Date: Fri, 6 Sep 2024 00:26:15 +0700 Subject: [PATCH] Adds CI step to update Rust on Linux --- .github/workflows/ci-linux.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index 5298db53..c4284a32 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -12,6 +12,8 @@ jobs: run: | sudo apt-get update sudo apt-get install -y flatpak flatpak-builder + - name: Update Rust + run: rustup update stable - name: Add additional Rust targets run: rustup target add x86_64-unknown-none - name: Lint Rust sources