Skip to content

Commit

Permalink
Show tree of dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: cmoulliard <[email protected]>
  • Loading branch information
cmoulliard committed Jan 13, 2025
1 parent 2afdf23 commit e1f6e79
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/podman-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,19 @@ jobs:
- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master

- name: Install podman
- name: Remove old executables
run: |
# Remove this old crun executable to let brew to install a newer one ...
apt-get remove crun
- name: Install podman and show dependencies
run: |
# What brew will install: https://ghcr.io/v2/homebrew/core/podman/manifests/5.3.1_1
brew install podman
brew install crun
brew services start podman
- name: Display versions
brew deps --tree --installed podman
- name: Display versions
run: |
podman -v
crun -v
Expand Down

0 comments on commit e1f6e79

Please sign in to comment.