From 6f9b172a645d1e3fb20921248abd9f5b71a0bb10 Mon Sep 17 00:00:00 2001
From: Philipp Oppermann <dev@phil-opp.com>
Date: Mon, 18 Nov 2019 12:24:16 +0100
Subject: [PATCH] Fix component example in Readme

The comment talks about a stable Rust version, but the configuration was set to nightly.
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 8ab2636..ff39473 100644
--- a/README.md
+++ b/README.md
@@ -81,7 +81,7 @@ and in combination with the [profiles](#profiles) input it allows to install onl
   uses: actions-rs/toolchain@v1
   with:
     profile: minimal
-    toolchain: nightly
+    toolchain: stable
     components: rustfmt, clippy
 ```