Skip to content

Commit 413f84d

Browse files
Merge #709
709: Run sudo apt-get update before installing a package r=adamgreig a=richardeoin As documented [here](https://docs.github.com/en/actions/using-github-hosted-runners/customizing-github-hosted-runners#installing-software-on-ubuntu-runners) and also discussed [here](actions/runner-images#1757) Co-authored-by: Richard Meadows <962920+richardeoin@users.noreply.github.com>
2 parents 4f9b182 + 552b4fa commit 413f84d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ jobs:
6060
components: rustfmt
6161

6262
- name: Install xmllint
63-
run: sudo apt-get install libxml2-utils
63+
run: |
64+
sudo apt-get update
65+
sudo apt-get install libxml2-utils
6466
6567
- name: Create working crate
6668
run: make crates

0 commit comments

Comments
 (0)