Skip to content

Commit a9deffe

Browse files
committed
CI: Always apt-get update before apt-get install
1 parent 1d146ea commit a9deffe

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/documentation_coverage.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ jobs:
3333
steps:
3434
- uses: actions/checkout@v4
3535
- name: install
36-
run: sudo apt install -y liburing-dev clang-format-19 libgles2-mesa-dev libx11-dev libxi-dev libxcursor-dev
36+
run: |
37+
sudo apt-get update
38+
sudo apt-get install -y liburing-dev clang-format-19 libgles2-mesa-dev libx11-dev libxi-dev libxcursor-dev
3739
- name: clang-format
3840
run: ./SC.sh format check
3941
- name: build documentation

.github/workflows/posix.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v4
2424
- name: install
25-
run: sudo apt install -y liburing-dev
25+
run: |
26+
sudo apt-get update
27+
sudo apt-get install -y liburing-dev
2628
if: matrix.params.os == 'ubuntu-latest'
2729
# Install 7zip just to check that links are still valid
2830
- name: package install 7zip

0 commit comments

Comments
 (0)