diff --git a/README.md b/README.md
index 072dcd1..4143a01 100644
--- a/README.md
+++ b/README.md
@@ -19,14 +19,10 @@ Prepare your workflow by adding the following steps:
 - name: Set up Go
   uses: actions/setup-go@v5
   with:
-    go-version: '1.22'
-```
-
-Run
+    go-version: '1.23'
 
-```YAML
-- name: Run Revive Action by building from repository
-  uses: mapped/revive-action@master
+- name: Run Revive Action
+  uses: mapped/revive-action@latest
 ```
 
 Configuration
diff --git a/entrypoint.sh b/entrypoint.sh
index fe802d9..8e74ccf 100755
--- a/entrypoint.sh
+++ b/entrypoint.sh
@@ -24,9 +24,6 @@ tar -xvzf revive.tar.gz
 REVIVE="$GITHUB_ACTION_PATH/revive"
 echo "Downloaded revive binary to $REVIVE"
 
-# TODO: Remove me
-ls -al $GITHUB_ACTION_PATH
-
 cd "$GITHUB_WORKSPACE"
 
 REVIVE_ACTION="go run $GITHUB_ACTION_PATH/main.go"