From b38faccf3b64a953272ca3fd8a18dd2d0b665225 Mon Sep 17 00:00:00 2001 From: Michael Vasseur <14887731+vmcj@users.noreply.github.com> Date: Sat, 22 Jul 2023 21:03:24 +0200 Subject: [PATCH] Fix mayhem test The wrong variables were fed to the job so the scan failed. This should fix this. It can not easily be tested as we don't run this on push because of the limited amount of tokens available. --- .github/workflows/mayhem-weekly.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mayhem-weekly.yml b/.github/workflows/mayhem-weekly.yml index becee4da1c..71cc90ecba 100644 --- a/.github/workflows/mayhem-weekly.yml +++ b/.github/workflows/mayhem-weekly.yml @@ -19,7 +19,7 @@ jobs: duration: "10m" uses: ./.github/workflows/mayhem-api-template.yml with: - version: "${{ matrix.target }}" - duration: "${{ matrix.version }}" + version: "${{ matrix.version }}" + duration: "${{ matrix.duration }}" secrets: MAPI_TOKEN: ${{ secrets.MAPI_TOKEN }}