What This Workflow Does
Keeping your n8n installation up-to-date is crucial for security, performance, and access to new features. However, manually checking for updates can be time-consuming and easy to forget. This workflow solves that problem by automating the entire version check process.
The workflow periodically checks the current n8n version against the latest stable release. If an update is available, it creates a notification file that can trigger other processes (like deployment scripts or team alerts). This ensures you never miss critical updates while minimizing manual oversight.
How It Works
1. Version Check
The workflow starts by fetching your current local n8n version and comparing it against the official latest stable release from n8n's release channels.
2. Version Comparison
It performs a semantic version comparison between versions to determine if your installation is outdated. The comparison accounts for major, minor, and patch version differences.
3. Notification Creation
When an update is available, the workflow creates a designated file (typically JSON) containing details about the available update. This file can be consumed by other automation tools or alert systems.
Pro tip: Pair this with a deployment automation tool to create a complete hands-off update system.
Who This Is For
This workflow is ideal for:
- Teams running mission-critical n8n instances that can't afford outdated software
- Developers managing multiple n8n installations
- Companies with strict security compliance requiring prompt updates
- IT teams automating their entire tech stack maintenance
What You'll Need
- An n8n instance (self-hosted or cloud)
- Access to modify workflows in your n8n environment
- Basic understanding of n8n's HTTP request nodes <
- A location to store the notification file (local storage or cloud)
Quick Setup Guide
- Download and import the JSON template into your n8n instance
- Configure the HTTP request node with your n8n instance details
- Set up the file creation path for your notification
- Schedule the workflow to run at your preferred interval (weekly recommended)
- Test with a known outdated version to verify the alert
Key Benefits
Never miss security updates: Critical patches are applied promptly, reducing vulnerability windows.
Save operational time: Eliminate manual version checks that can take 15-30 minutes per instance weekly.
Maintain consistency: Ensure all team members and systems are working with the same version.
Enable downstream automation: The notification file can trigger deployment scripts or alert systems.