From e15d20345f5cb5c1bbaf2f830ca63893986fdba7 Mon Sep 17 00:00:00 2001 From: Marie Date: Thu, 3 Nov 2022 07:04:27 +0100 Subject: [PATCH] Change from command to action for rust --- .github/workflows/buildnup.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/buildnup.yml b/.github/workflows/buildnup.yml index af1f7df..0453253 100644 --- a/.github/workflows/buildnup.yml +++ b/.github/workflows/buildnup.yml @@ -46,12 +46,13 @@ jobs: DEBIAN_FRONTEND: noninteractive steps: - - name: Install Deps & Rust + - name: Install Deps run: | apt update apt install -y libgtk-4-1 libgtk-4-dev libadwaita-1-0 libadwaita-1-dev git curl openssl libssl-dev - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable -y - + + - uses: dtolnay/rust-toolchain@stable + - name: Checkout uses: actions/checkout@v3 with: