Skip to content

Commit

Permalink
fixes missing apt update in PR workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
taukakao committed Nov 23, 2024
1 parent f7a1c81 commit d8fef5c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
- uses: actions/checkout@v4

- name: Install podman
run: sudo apt-get install -y podman
run: |
sudo apt-get update
sudo apt-get install -y podman
# See: https://github.com/actions/runner-images/issues/9425
- name: Patch crun
Expand Down

0 comments on commit d8fef5c

Please sign in to comment.