diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cab254a8cead5777e77d2180acf280bf8cdfdbab..bc9b0ffa2073e68aa6803443f99e9b31c7a3a1cd 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -32,7 +32,7 @@ build:
 build-publish-dev-docker-container-job:
   stage: deploy
   image:
-    name: gcr.io/kaniko-project/executor:v1.9.1-debug
+    name: gcr.io/kaniko-project/executor:v1.16.0-debug
     entrypoint: [""]
   only:
     refs:
@@ -49,7 +49,7 @@ build-publish-dev-docker-container-job:
 build-publish-docker-container-job:
   stage: deploy
   image:
-    name: gcr.io/kaniko-project/executor:v1.9.1-debug
+    name: gcr.io/kaniko-project/executor:v1.16.0-debug
     entrypoint: [""]
   only:
     - tags
diff --git a/src/components/parameter-schema/form-mode/ParameterNumberInput.vue b/src/components/parameter-schema/form-mode/ParameterNumberInput.vue
index f93c0bf683345162a1d6bceb466717e77b84d6c9..513b783282e6b08ce8e78b4dd4360ddd4fe963ce 100644
--- a/src/components/parameter-schema/form-mode/ParameterNumberInput.vue
+++ b/src/components/parameter-schema/form-mode/ParameterNumberInput.vue
@@ -39,7 +39,7 @@ function updateValue() {
     ref="numberInput"
     :max="props.parameter['maximum']"
     :min="props.parameter['minimum']"
-    step="1"
+    step="0.01"
     :value="props.modelValue"
     :required="props.required"
     :aria-describedby="props.helpId"