From 03549dfddeccfc39c872cb7c937b00d74b6e4242 Mon Sep 17 00:00:00 2001 From: Corwin Date: Sat, 10 Apr 2021 19:05:16 +0100 Subject: [PATCH] run apt-get as root --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e515013e..0eb407b5 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Install build tools - run: apt-get install binutils-arm-none-eabi -y + run: sudo apt-get install binutils-arm-none-eabi -y - uses: actions/checkout@v2 - name: Nightly rust with required components uses: actions-rs/toolchain@v1 @@ -36,4 +36,4 @@ jobs: - name: Run Clippy run: cargo clippy --verbose - \ No newline at end of file +