.github/workflows: Add missing 'apt-get update' to the snapshot workflow
[fw/openocd] / .github / workflows / snapshot.yml
index 45db72e940a8717d4ed2bee6880f7e909248b173..bde803cc4ce7c9c1405b629ee835d1ae0956a33d 100644 (file)
@@ -14,7 +14,9 @@ jobs:
       BUILD_DIR: ../build
     steps:
       - name: Install needed packages
-        run: sudo apt-get install autotools-dev autoconf automake libtool pkg-config cmake texinfo texlive g++-mingw-w64-i686
+        run: |
+          sudo apt-get update
+          sudo apt-get install autotools-dev autoconf automake libtool pkg-config cmake texinfo texlive g++-mingw-w64-i686
       - name: Checkout Code
         uses: actions/checkout@v1
       - run: ./bootstrap