Skip to content

Commit ed8a41b

Browse files
committed
Update apt-get before installing Image Magick
1 parent 9c3b4f6 commit ed8a41b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/html_proofer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
steps:
99
- uses: actions/checkout@v3
1010
- name: Install Image Magick
11-
run: sudo apt-get install imagemagick
11+
run: sudo apt-get update && sudo apt-get install imagemagick
1212
- uses: ruby/setup-ruby@v1
1313
with:
1414
bundler-cache: true

.github/workflows/jekyll.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: NPM install
2727
run: npm install
2828
- name: Install Image Magick
29-
run: sudo apt-get install imagemagick
29+
run: sudo apt-get update && sudo apt-get install imagemagick
3030
- name: Setup Ruby
3131
uses: ruby/setup-ruby@v1
3232
with:

0 commit comments

Comments
 (0)