Merge pull request #99 from Icinga/apt-get-update

Run `apt-get update` in action.yml
This commit is contained in:
Julian Brost 2023-05-02 16:25:18 +02:00 committed by GitHub
commit b782daf7d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -15,6 +15,9 @@ jobs:
- name: Checkout HEAD - name: Checkout HEAD
uses: actions/checkout@v1 uses: actions/checkout@v1
- shell: bash
run: sudo apt-get update
- name: QEMU - name: QEMU
run: sudo apt-get install -y qemu-user-static binfmt-support run: sudo apt-get install -y qemu-user-static binfmt-support

View File

@ -9,6 +9,9 @@ runs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- shell: bash
run: sudo apt-get update
- shell: bash - shell: bash
run: sudo apt-get install -y qemu-user-static binfmt-support run: sudo apt-get install -y qemu-user-static binfmt-support