OSDN Git Service

[Fix] #2513 libcurl4のインストールに失敗し、GitHub Actionsが正常に動作しない事象を修正した
authorHourier <66951241+Hourier@users.noreply.github.com>
Sun, 15 May 2022 06:09:57 +0000 (15:09 +0900)
committerHourier <66951241+Hourier@users.noreply.github.com>
Sun, 15 May 2022 06:30:10 +0000 (15:30 +0900)
これに伴い、Ubuntuのバージョン指定をlatestから20.04に変更した
(22.04にするタイミングは自動ではなく開発者の合議で決めたい)

.github/workflows/build-with-autotools.yml

index db3e7ad..be5b5e4 100644 (file)
@@ -18,7 +18,7 @@ on:
 
 jobs:
   build:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-20.04
     steps:
       - uses: actions/checkout@v2
 
@@ -35,6 +35,7 @@ jobs:
 
       - name: Install required packages
         run: |
+          sudo apt-get update
           sudo apt-get install \
             autoconf-archive \
             libncursesw5-dev \