diff --git a/action.yml b/action.yml
index eb4f928926f59c0fb7d43ef32ff433f429e5b81e..b873d49aed91cca7e409fdc727643605db6ddfcd 100644
--- a/action.yml
+++ b/action.yml
@@ -37,7 +37,7 @@ runs:
         if: ${{ success() }}
         with:
           github-token: ${{ github.token }} # this will use the runner's token.
-          ms-teams-webhook-uri: ${{ input.MSTEAMS_WEBHOOK }}
+          ms-teams-webhook-uri: ${{ inputs.MSTEAMS_WEBHOOK }}
           notification-summary: Build and Deploy success.
           notification-color: 28a745
           timezone: Europe/Paris
@@ -46,7 +46,7 @@ runs:
         if: ${{ failure() }}
         with:
           github-token: ${{ github.token }} # this will use the runner's token.
-          ms-teams-webhook-uri: ${{ input.MSTEAMS_WEBHOOK }}
+          ms-teams-webhook-uri: ${{ inputs.MSTEAMS_WEBHOOK }}
           notification-summary: Build and Deploy failure.
           notification-color: dc3545
           timezone: Europe/Paris