Skip to content

Commit c952ce9

Browse files
committed
fix(GitHub Workflows): consider Podman v5 in workflows as well
Signed-off-by: Rainer Poisel <[email protected]>
1 parent bf4ed12 commit c952ce9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/docker-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212

1313
jobs:
1414

15-
build-podman-v4:
15+
build-podman-v5:
1616
env:
1717
CGO_ENABLED: 1 # CGO is required for podman
1818
runs-on: ubuntu-latest
@@ -30,7 +30,7 @@ jobs:
3030
if: steps.cache-podman-bin.outputs.cache-hit != 'true'
3131
with:
3232
repository: containers/podman
33-
ref: v5.4.2
33+
ref: ${{ env.PODMAN_VER }}
3434

3535
- uses: actions/setup-go@v4
3636
if: steps.cache-podman-bin.outputs.cache-hit != 'true'
@@ -54,7 +54,7 @@ jobs:
5454
if: steps.cache-podman-bin.outputs.cache-hit != 'true'
5555
run: sudo apt install -y libsystemd-dev libseccomp-dev pkg-config golang-github-proglottis-gpgme-dev
5656

57-
- name: Build podman v4
57+
- name: Build podman v5
5858
if: steps.cache-podman-bin.outputs.cache-hit != 'true'
5959
run: make binaries
6060

0 commit comments

Comments
 (0)