Fix GitHub Actions 404 Errors due to lack of apt-get update (#312)

This commit is contained in:
Sam Demeulemeester 2023-05-21 00:26:28 +02:00 committed by GitHub
parent a1ef11c3ba
commit 43aab9d231
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -29,7 +29,9 @@ jobs:
submodules: recursive
- name: Install Linux Dependencies
run: sudo apt-get install build-essential gcc-multilib clang libc6-dev-i386-cross dosfstools mtools xorriso -y
run: |
sudo apt-get update
sudo apt-get install build-essential gcc-multilib clang libc6-dev-i386-cross dosfstools mtools xorriso -y
- name: Clean up
working-directory: ./build${{matrix.wordsize}}