You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ This composite action installs Podman on GitHub-hosted runners for both Linux (U
6
6
7
7
The action is cross-platform, working for both ubuntu-latest and windows-latest runners.
8
8
9
-
On Windows, it features a smart installer that automatically fetches the latest Podman version by default. However, you can also specify a specific version if your CI needs to be pinned to an older release. After installation, the action automatically runs podman machine init --now to ensure the Podman machine is running and ready for use in subsequent steps.
9
+
On Windows, it uses the official Podman MSI installer, automatically fetching the latest version. You can specify a specific Podman version if your CI needs to be pinned. After installation, the action automatically runs podman machine init --now to ensure the Podman machine is running and ready for use in subsequent steps.
10
10
11
11
On Linux, the action installs Podman v5.x and its key dependencies (like CRIU) from the openSUSE Kubic repository, ensuring you get a modern version.
Copy file name to clipboardExpand all lines: action.yml
+50-7Lines changed: 50 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,10 @@ inputs:
28
28
description: "Podman version for Windows. Use 'latest' or a specific version (e.g. '5.6.2')."
29
29
required: false
30
30
default: "latest"
31
+
install-scope:
32
+
description: "Installation scope for Windows MSI installer. Use 'user' for user-scope (no admin required) or 'machine' for machine-scope (requires admin privileges)."
33
+
required: false
34
+
default: "user"
31
35
github-token:
32
36
description: "GitHub token to make authenticated API requests and avoid rate limiting."
0 commit comments