Skip to content

Commit d79ff05

Browse files
Fix libxml2 Workflow Error (#1219)
1 parent 9f823d7 commit d79ff05

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/build-cpp.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ jobs:
5151
- name: Install dependencies linux
5252
if: runner.os == 'Linux'
5353
run: |
54+
sudo apt-get update
5455
sudo apt-get install -y nlohmann-json3-dev
5556
sudo apt-get install -y libboost-all-dev
5657

.github/workflows/build-dotnet.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ jobs:
3131
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3232

3333
- name: Install xmllint
34-
run: sudo apt-get install -y libxml2-utils
34+
run: |
35+
sudo apt-get update
36+
sudo apt-get install -y libxml2-utils
3537
3638
- name: Get version
3739
id: version

.github/workflows/release-dotnet.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ jobs:
3838
fi
3939
4040
- name: Install xmllint
41-
run: sudo apt-get install -y libxml2-utils
41+
run: |
42+
sudo apt-get update
43+
sudo apt-get install -y libxml2-utils
4244
4345
- name: Get version
4446
id: version

0 commit comments

Comments
 (0)