diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index f7c0c3ae..77db9658 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -112,7 +112,7 @@ jobs: uses: actions/checkout@v4 - name: Install dependencies - run: apt update -y && apt install -y curl build-essential + run: apt-get update -y && apt-get install -y curl build-essential - name: Install Rust uses: dtolnay/rust-toolchain@stable diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7cc7cb5b..b3f9afc2 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -37,7 +37,7 @@ jobs: - name: Install Linux dependencies if: matrix.os == 'ubuntu' - run: apt update -y && apt install -y libpcap-dev libasound2-dev libgtk-3-dev + run: sudo apt-get update -y && apt-get install -y libpcap-dev libasound2-dev libgtk-3-dev - name: Install Windows dependencies if: matrix.os == 'windows' && github.event_name != 'pull_request'