Skip to content

Commit fcae09a

Browse files
committed
sudo !!
1 parent bcf1988 commit fcae09a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/clippy-format-rustdocs.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
run: |
1515
eval $(ssh-agent -s)
1616
ssh-add - <<< "${{ secrets.PRIVATE_SSH_KEY }}"
17-
apt install -y gcc-arm-none-eabi
17+
sudo apt install -y gcc-arm-none-eabi
1818
rustup target add thumbv7em-none-eabihf
1919
cargo clippy -- -D warnings
2020
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
eval $(ssh-agent -s)
2828
ssh-add - <<< "${{ secrets.PRIVATE_SSH_KEY }}"
29-
apt install -y gcc-arm-none-eabi
29+
sudo apt install -y gcc-arm-none-eabi
3030
rustup target add thumbv7em-none-eabihf
3131
cargo clippy -- -W clippy::pedantic
3232
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
eval $(ssh-agent -s)
4040
ssh-add - <<< "${{ secrets.PRIVATE_SSH_KEY }}"
41-
apt install -y gcc-arm-none-eabi
41+
sudo apt install -y gcc-arm-none-eabi
4242
rustup target add thumbv7em-none-eabihf
4343
cargo fmt --check
4444
@@ -51,7 +51,7 @@ jobs:
5151
eval $(ssh-agent -s)
5252
ssh-add - <<< "${{ secrets.PRIVATE_SSH_KEY }}"
5353
rustup target add thumbv7em-none-eabihf
54-
apt install -y gcc-arm-none-eabi
54+
sudo apt install -y gcc-arm-none-eabi
5555
RUSTDOCFLAGS="-D warnings" cargo doc --no-deps --document-private-items
5656
- name: upload artifacts
5757
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)