diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
 
 _Interactive terminal prompt_
 
-[![Build Status][travis-image]][travis-url]
+[![Build Status][ci-image]][ci-url]
 [![MIT License][license-image]][license-url]
 
 ![fortytwo](https://github.com/GianlucaGuarini/fortytwo/raw/develop/fortytwo.jpg)
@@ -117,8 +117,8 @@
 
 This script is heavily inspired by [survey (golang)](https://github.com/AlecAivazis/survey)
 
-[travis-image]:https://img.shields.io/travis/GianlucaGuarini/fortytwo.svg?style=flat-square
-[travis-url]:https://travis-ci.org/GianlucaGuarini/fortytwo
+[ci-image]: https://img.shields.io/github/actions/workflow/status/GianlucaGuarini/fortytwo/ci.yml?style=flat-square
+[ci-url]: https://github.com/GianlucaGuarini/fortytwo/actions
 
 [license-image]:http://img.shields.io/badge/license-MIT-000000.svg?style=flat-square
 [license-url]:LICENSE
diff --git a/fortytwo.cabal b/fortytwo.cabal
--- a/fortytwo.cabal
+++ b/fortytwo.cabal
@@ -1,13 +1,13 @@
 name:                fortytwo
-version:1.0.6
+version:1.0.7
 synopsis:            Interactive terminal prompt
 description:         List of Prompt helpers to pimp the UIs of your haskell programs
 homepage:            https://github.com/gianlucaguarini/fortytwo#readme
 license:             MIT
-license-file:        LICENSE
+license-file:         LICENSE
 author:              Gianluca Guarini
 maintainer:          gianluca.guarini@gmail.com
-copyright:           Gianlua Guarini
+copyright:           Gianluca Guarini
 category:            Prompt
 build-type:          Simple
 extra-source-files:  README.md
@@ -35,8 +35,8 @@
                        FortyTwo.Renderers.Select
                        FortyTwo.Renderers.Multiselect
   build-depends:       base >= 4.7 && < 5,
-                       text <= 1.3,
-                       ansi-terminal >= 0.6.0.0 && <= 0.12
+                       text < 2.1,
+                       ansi-terminal >= 0.6.0.0 && < 1.1
   default-language:    Haskell2010
 
 executable             demo
diff --git a/src/FortyTwo/Prompts/Confirm.hs b/src/FortyTwo/Prompts/Confirm.hs
--- a/src/FortyTwo/Prompts/Confirm.hs
+++ b/src/FortyTwo/Prompts/Confirm.hs
@@ -22,7 +22,7 @@
 confirmWithDefault question defaultAnswer = do
   putStrLn emptyString
   renderQuestion question defaultAnswerHumanized emptyString
-  renderConfirm
+  renderConfirm defaultAnswer
   flush
   answer <- getCleanConfirm
   clearLines 1
diff --git a/src/FortyTwo/Renderers/Confirm.hs b/src/FortyTwo/Renderers/Confirm.hs
--- a/src/FortyTwo/Renderers/Confirm.hs
+++ b/src/FortyTwo/Renderers/Confirm.hs
@@ -4,5 +4,8 @@
     ) where
 
 -- | Render the helper text
-renderConfirm :: IO ()
-renderConfirm = putStr " (y/N) "
+renderConfirm :: Bool -> IO ()
+renderConfirm defaultAnswer = putStr $ " (" ++ msg ++ ") "
+  where
+    msg | defaultAnswer = "Y/n"
+        | otherwise = "y/N"
