Skip to content

Commit 27202a5

Browse files
committed
chore: apt update before install
1 parent c1f6396 commit 27202a5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: ilammy/setup-nasm@v1
2727
- if: ${{ matrix.platform == 'ubuntu-latest' }}
2828
name: Install LLVM and Clang
29-
run: sudo apt install -y clang
29+
run: sudo apt update && sudo apt install -y clang
3030
- name: Install Rust
3131
run: |
3232
rustup set profile minimal

.github/workflows/build-msrv.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: jlumbroso/free-disk-space@main
2323
- if: ${{ matrix.platform == 'ubuntu-latest' }}
2424
name: Install LLVM and Clang
25-
run: sudo apt install -y clang
25+
run: sudo apt update && sudo apt install -y clang
2626
- uses: actions/checkout@v4
2727
- uses: Swatinem/rust-cache@v2
2828
- if: ${{ runner.os == 'Windows' }}

.github/workflows/build-nightly-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: jlumbroso/free-disk-space@main
3333

3434
- name: Install LLVM and Clang
35-
run: sudo apt install -y clang
35+
run: sudo apt update && sudo apt install -y clang
3636

3737
- uses: actions/checkout@v4
3838

.github/workflows/build-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
uses: jlumbroso/free-disk-space@main
7777

7878
- name: Install LLVM and Clang
79-
run: sudo apt install -y clang
79+
run: sudo apt update && sudo apt install -y clang
8080

8181
- uses: actions/checkout@v4
8282

0 commit comments

Comments
 (0)