diff --git a/README.md b/README.md
index 2f72f58..be1da21 100644
--- a/README.md
+++ b/README.md
@@ -37,7 +37,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.3.2
+uses: smartsquaregmbh/delete-old-packages@v0.3.3
 with:
   names: |
     package-1
@@ -47,7 +47,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.3.2
+uses: smartsquaregmbh/delete-old-packages@v0.3.3
 with:
   organization: my-organization
   names: |
@@ -58,7 +58,7 @@ with:
 > Delete old versions in the form of "1.0.0-RC1" of the package "package".
 
 ```yaml
-uses: smartsquaregmbh/delete-old-packages@v0.3.2
+uses: smartsquaregmbh/delete-old-packages@v0.3.3
 with:
   version-pattern: "^\\d+\\.\\d+\\.\\d+-RC\\d+$" # The regex needs to be escaped!
   names: |
@@ -68,7 +68,7 @@ with:
 > Delete old versions with a lower semver version than 2.x of the package "package".
 
 ```yaml
-uses: smartsquaregmbh/delete-old-packages@v0.3.2
+uses: smartsquaregmbh/delete-old-packages@v0.3.3
 with:
   semver-pattern: "<2.x"
   names: |
@@ -78,7 +78,7 @@ with:
 > Delete old versions of the package "package" but keep at least 5 versions.
 
 ```yaml
-uses: smartsquaregmbh/delete-old-packages@v0.3.2
+uses: smartsquaregmbh/delete-old-packages@v0.3.3
 with:
   keep: 5
   names: |
@@ -88,7 +88,7 @@ with:
 > Delete version `foo-bar` of the package "package".
 
 ```yaml
-uses: smartsquaregmbh/delete-old-packages@v0.3.2
+uses: smartsquaregmbh/delete-old-packages@v0.3.3
 with:
   version: foo-bar
   names: |
diff --git a/package.json b/package.json
index 34bf193..f1b7b2a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "delete-old-packages",
-  "version": "0.3.2",
+  "version": "0.3.3",
   "description": "Github Action for deleting old packages",
   "main": "dist/index.js",
   "repository": "https://github.com/SmartsquareGmbH/delete-old-packages",