diff --git a/README.md b/README.md index c99fe5d..5a85633 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ but targets a different use case. > Delete old versions of the packages "package-1" and "package-2". ```yaml -uses: smartsquaregmbh/delete-old-packages@v0.0.3 +uses: smartsquaregmbh/delete-old-packages@v0.1.0 with: names: | package-1 @@ -31,7 +31,7 @@ with: > Delete old versions in the form of "1.0.0-RC1" of the package "package" ```yaml -uses: smartsquaregmbh/delete-old-packages@v0.0.3 +uses: smartsquaregmbh/delete-old-packages@v0.1.0 with: version-pattern: "^\\d+\\.\\d+\\.\\d+-RC\\d+$" # The regex needs to be escaped! names: | @@ -41,7 +41,7 @@ with: > Delete old versions of the package "package" but keep at least 5 versions ```yaml -uses: smartsquaregmbh/delete-old-packages@v0.0.3 +uses: smartsquaregmbh/delete-old-packages@v0.1.0 with: keep: 5 names: | diff --git a/package.json b/package.json index a88af2f..093e727 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "delete-old-packages", - "version": "0.0.3", + "version": "0.1.0", "description": "Github Action for deleting old packages", "main": "dist/index.js", "repository": "https://github.com/SmartsquareGmbH/delete-old-packages",