Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Deprecate the action #4

Merged
merged 1 commit into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
Composite GitHub Action installs a fresh Podman version in your GitHub Actions workflow. Only for Linux
(`runs-on: ubuntu-latest`) runners.

> [!IMPORTANT]
> Since it was just an experiment to simplify fresh Podman installations in GitHub Actions, we no longer recommend
> using this action. Please refer to the official Podman documentation for
> [installation instructions](https://podman.io/docs/installation).

## Usage

```yaml
Expand Down
6 changes: 6 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ inputs:
runs:
using: composite
steps: # manual: <https://podman.io/docs/installation#debian>
- shell: bash
run: >
echo '::warning title=Action gacts/install-podman is deprecated::Since it was just an experiment to simplify
fresh Podman installations in GitHub Actions, we no longer recommend using this action. Please refer to the
official Podman documentation for installation instructions: https://podman.io/docs/installation'

- if: ${{ inputs.kind == 'testing' }}
shell: bash
run: |
Expand Down
Loading