Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version in readme #86

Merged
merged 1 commit into from Jan 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
34 changes: 17 additions & 17 deletions README.md
Expand Up @@ -17,7 +17,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
# Usage

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
# Can be a single package version id, or a comma separated list of package version ids.
# Defaults to an empty string.
Expand Down Expand Up @@ -107,7 +107,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete all pre-release package versions except latest 10

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
package-name: 'test-package'
package-type: 'npm'
Expand All @@ -121,7 +121,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete all pre-release package versions except latest 10 from a repo not having access to package

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
owner: 'github'
package-name: 'test-package'
Expand All @@ -142,7 +142,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete all except latest 3 package versions excluding major versions as per semver

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
package-name: 'test-package'
package-type: 'npm'
Expand All @@ -159,7 +159,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete all except latest 3 package versions excluding major versions as per semver from a repo not having access to package

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
owner: 'github'
package-name: 'test-package'
Expand All @@ -182,7 +182,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete 3 oldest versions excluding major versions as per semver

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
package-name: 'test-package'
package-type: 'npm'
Expand All @@ -199,7 +199,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete 3 oldest versions excluding major versions as per semver from a repo not having access to package

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
owner: 'github'
package-name: 'test-package'
Expand All @@ -220,7 +220,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete all except latest 2 versions of a package hosted

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
package-name: 'test-package'
package-type: 'npm'
Expand All @@ -236,7 +236,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete all except latest 2 versions of a package hosted from a repo not having access to package

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
owner: 'github'
package-name: 'test-package'
Expand All @@ -256,7 +256,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete the oldest 3 version of a package hosted

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
package-name: 'test-package'
package-type: 'npm'
Expand All @@ -272,7 +272,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete the oldest 3 version of a package hosted from a repo not having access to package

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
owner: 'github'
package-name: 'test-package'
Expand All @@ -290,7 +290,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
__Example__

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
package-name: 'test-package'
package-type: 'npm'
Expand All @@ -301,7 +301,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
__Example__

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
owner: 'github'
package-name: 'test-package'
Expand All @@ -320,7 +320,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
__Example__

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
package-version-ids: 'MDE0OlBhY2thZ2VWZXJzaW9uOTcyMDY3'
package-name: 'test-package'
Expand All @@ -334,7 +334,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
__Example__

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
package-version-ids: 'MDE0OlBhY2thZ2VWZXJzaW9uOTcyMDY3'
package-name: 'test-package'
Expand All @@ -353,7 +353,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
__Example__

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
package-version-ids: 'MDE0OlBhY2thZ2VWZXJzaW9uOTcyMDY3, MDE0OlBhY2thZ2VWZXJzaW9uOTcyMzQ5, MDE0OlBhY2thZ2VWZXJzaW9uOTcyMzUw'
package-name: 'test-package'
Expand All @@ -367,7 +367,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
__Example__

```yaml
- uses: actions/delete-package-versions@v3
- uses: actions/delete-package-versions@v4
with:
package-version-ids: 'MDE0OlBhY2thZ2VWZXJzaW9uOTcyMDY3, MDE0OlBhY2thZ2VWZXJzaW9uOTcyMzQ5, MDE0OlBhY2thZ2VWZXJzaW9uOTcyMzUw'
package-name: 'test-package'
Expand Down