CI: Ensure apt repository is up-to-date before installing build deps

This commit is contained in:
Jack Grigg 2023-06-13 03:45:39 +00:00
parent 5b0736fb43
commit 49bd8f9a90
3 changed files with 6 additions and 6 deletions

View file

@ -41,7 +41,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Install linux build dependencies
run: sudo apt install libfuse-dev
run: sudo apt update && sudo apt install libfuse-dev
- run: cargo check --all-targets --all-features
clippy:
@ -50,7 +50,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Install linux build dependencies
run: sudo apt install libfuse-dev
run: sudo apt update && sudo apt install libfuse-dev
- name: Clippy check
uses: actions-rs/clippy-check@v1
with:
@ -68,7 +68,7 @@ jobs:
id: toolchain
- run: rustup override set ${{steps.toolchain.outputs.name}}
- name: Install linux build dependencies
run: sudo apt install libfuse-dev
run: sudo apt update && sudo apt install libfuse-dev
- name: Generate coverage report
uses: actions-rs/tarpaulin@v0.1
with:

View file

@ -114,7 +114,7 @@ jobs:
# Prepare the test environment
- name: Install dos2unix for simulating Windows files
run: sudo apt install dos2unix
run: sudo apt update && sudo apt install dos2unix
- name: Write (very not private) age X25519 key
if: matrix.recipient == 'x25519'
run: echo "AGE-SECRET-KEY-1TRYTV7PQS5XPUYSTAQZCD7DQCWC7Q77YJD7UVFJRMW4J82Q6930QS70MRX" >key.txt

View file

@ -70,7 +70,7 @@ jobs:
- run: rustup override set ${{steps.toolchain.outputs.name}}
- name: Install linux build dependencies
run: sudo apt install ${{ matrix.build_deps }}
run: sudo apt update && sudo apt install ${{ matrix.build_deps }}
if: matrix.build_deps != ''
- name: Set up .cargo/config
@ -177,7 +177,7 @@ jobs:
run: cargo install cargo-deb
- name: Install build dependencies
run: sudo apt install ${{ matrix.build_deps }}
run: sudo apt update && sudo apt install ${{ matrix.build_deps }}
if: matrix.build_deps != ''
- name: Set up .cargo/config