Skip to content

Commit

Permalink
Bump version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rubengees committed Aug 24, 2022
1 parent 27998e5 commit 53e0b59
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ table below) on them and then deleting the matching versions.
> Delete old versions of the packages "package-1" and "package-2" for the current repository.
```yaml
uses: smartsquaregmbh/delete-old-packages@v0.4.0
uses: smartsquaregmbh/delete-old-packages@v0.5.0
with:
names: |
package-1
Expand All @@ -45,7 +45,7 @@ with:
> Delete old versions of the packages "package-1" and "package-2" for the organization "my-organization".
```yaml
uses: smartsquaregmbh/delete-old-packages@v0.4.0
uses: smartsquaregmbh/delete-old-packages@v0.5.0
with:
organization: my-organization
names: |
Expand All @@ -56,7 +56,7 @@ with:
> Delete old versions in the form of "1.0.0-RC1" of the package "package".
```yaml
uses: smartsquaregmbh/delete-old-packages@v0.4.0
uses: smartsquaregmbh/delete-old-packages@v0.5.0
with:
version-pattern: "^\\d+\\.\\d+\\.\\d+-RC\\d+$" # The regex needs to be escaped!
names: |
Expand All @@ -66,7 +66,7 @@ with:
> Delete old versions with a lower semver version than 2.x of the package "package".
```yaml
uses: smartsquaregmbh/delete-old-packages@v0.4.0
uses: smartsquaregmbh/delete-old-packages@v0.5.0
with:
semver-pattern: "<2.x"
names: |
Expand All @@ -76,7 +76,7 @@ with:
> Delete old versions of the package "package" but keep at least 5 versions.
```yaml
uses: smartsquaregmbh/delete-old-packages@v0.4.0
uses: smartsquaregmbh/delete-old-packages@v0.5.0
with:
keep: 5
names: |
Expand All @@ -85,7 +85,7 @@ with:
### ghcr.io packages
As of version v0.4.0 this action is able to delete [ghcr.io](https://ghcr.io/) packages. Since these packages are not integrated (yet) into
As of version v0.5.0 this action is able to delete [ghcr.io](https://ghcr.io/) packages. Since these packages are not integrated (yet) into
the APIs this action is using normally, a few additional options are required:
- The `type` needs to be set to `CONTAINER`.
Expand All @@ -95,7 +95,7 @@ the APIs this action is using normally, a few additional options are required:
#### Example

```yaml
uses: smartsquaregmbh/delete-old-packages@v0.4.0
uses: smartsquaregmbh/delete-old-packages@v0.5.0
with:
token: ${{ secrets.GH_ACCESS_TOKEN }}
organization: my-organization
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "delete-old-packages",
"version": "0.4.0",
"version": "0.5.0",
"description": "GitHub Action for deleting old packages",
"main": "dist/index.js",
"repository": "https://github.com/SmartsquareGmbH/delete-old-packages",
Expand Down

0 comments on commit 53e0b59

Please sign in to comment.