]> source.dussan.org Git - redmine.git/commitdiff
Fix CI failure on GitHub Actions due to missing apt-get update (#30069).
authorGo MAEDA <maeda@farend.jp>
Thu, 14 Nov 2024 23:36:50 +0000 (23:36 +0000)
committerGo MAEDA <maeda@farend.jp>
Thu, 14 Nov 2024 23:36:50 +0000 (23:36 +0000)
Patch by Katsuya HIDAKA (user:hidakatsuya).

git-svn-id: https://svn.redmine.org/redmine/trunk@23270 e93f8b46-1217-0410-a6f0-8f06a7374b81

.github/workflows/tests.yml

index d35d574068f10e01353b9624dd1c45b2f88f90bd..7017286d4cb8b6dd355882f3ce18f37213166585 100644 (file)
@@ -47,10 +47,9 @@ jobs:
         uses: actions/checkout@v4
 
       - name: Install package dependencies
-        run: >
-          sudo apt-get install --yes --quiet
-          ghostscript
-          gsfonts
+        run: |
+          sudo apt-get update
+          sudo apt-get install --yes --quiet ghostscript gsfonts
 
       - name: Allow imagemagick to read PDF files
         run: |