diff --git a/README.md b/README.md
index 6847616..e205ee5 100644
--- a/README.md
+++ b/README.md
@@ -31,6 +31,7 @@ See ["Caching dependencies to speed up workflows"](https://docs.github.com/en/ac
 * Two new actions available for granular control over caches - [restore](restore/action.yml) and [save](save/action.yml)
 * Support cross-os caching as an opt-in feature. See [Cross OS caching](./tips-and-workarounds.md#cross-os-cache) for more info.
 * Added option to fail job on cache miss. See [Exit workflow on cache miss](./restore/README.md#exit-workflow-on-cache-miss) for more info.
+* Added new [check](check/action.yml) action to check if a check entry exists without downloading it.
 
 Refer [here](https://github.com/actions/cache/blob/v2/README.md) for previous versions
 
diff --git a/RELEASES.md b/RELEASES.md
index 50cfd91..dd617ee 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -70,3 +70,6 @@
 
 ### 3.2.4
 - Added option to fail job on cache miss.
+
+### 3.3.0
+- Added new [check](check/action.yml) action to check if a check entry exists without downloading it.
diff --git a/package-lock.json b/package-lock.json
index 010c342..c6dd261 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
   "name": "cache",
-  "version": "3.2.4",
+  "version": "3.3.0",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
     "": {
       "name": "cache",
-      "version": "3.2.4",
+      "version": "3.3.0",
       "license": "MIT",
       "dependencies": {
         "@actions/cache": "https://github.com/cdce8p/toolkit/raw/cache-dry-run-release/packages/cache/actions-cache-3.1.3.tgz",
diff --git a/package.json b/package.json
index 56a9974..d3ea639 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cache",
-  "version": "3.2.4",
+  "version": "3.3.0",
   "private": true,
   "description": "Cache dependencies and build outputs",
   "main": "dist/restore/index.js",