diff --git a/README.md b/README.md
index c3b81a4fb2a35c83a5738c7e495da25a9254421e..1b30bb08bb82cbc5284b9887b54b014d8d54877d 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ This role includes as well:
 ## Role Variables
 
 ```yaml
-conda_version: 4.8.3
+conda_version: 4.8.4
 conda_owner: root
 conda_group: root
 conda_channel_alias: https://artifactory.esss.lu.se/artifactory/api/conda
diff --git a/defaults/main.yml b/defaults/main.yml
index 46c0a861f3d5e708ef38361e1d5621cc17843623..ca9952932ea23806351d049984f51ddc1b14d596 100644
--- a/defaults/main.yml
+++ b/defaults/main.yml
@@ -1,5 +1,5 @@
 ---
-conda_version: 4.8.3
+conda_version: 4.8.4
 conda_owner: root
 conda_group: root
 conda_channel_alias: https://artifactory.esss.lu.se/artifactory/api/conda
diff --git a/molecule/default/tests/test_conda.py b/molecule/default/tests/test_conda.py
index 612757d183364a5c5853cf06d06e225176d42400..aebe6746b78b6a7ca63ecbd6d46d42373f21d06b 100644
--- a/molecule/default/tests/test_conda.py
+++ b/molecule/default/tests/test_conda.py
@@ -10,7 +10,7 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
 def test_conda_version(host):
     cmd = host.run("/opt/conda/bin/conda --version 2>&1")
     assert cmd.rc == 0
-    assert cmd.stdout.strip() == "conda 4.8.3"
+    assert cmd.stdout.strip() == "conda 4.8.4"
 
 
 def test_conda_path(host):