From b377285034669fc7f59485ec5f2c6d8a8e4b6ab3 Mon Sep 17 00:00:00 2001 From: Uladzimir Havenchyk <125459446+uladzimirdev@users.noreply.github.com> Date: Wed, 7 Aug 2024 00:04:53 +0300 Subject: [PATCH] ci: do not save same m2 cache multiple times (#46545) --- .github/actions/test-driver/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/test-driver/action.yml b/.github/actions/test-driver/action.yml index 694737aac33..ec3aac890b5 100644 --- a/.github/actions/test-driver/action.yml +++ b/.github/actions/test-driver/action.yml @@ -2,7 +2,7 @@ name: Test database driver inputs: junit-name: required: true - default: 'driver' + default: "driver" test-args: required: false @@ -14,7 +14,7 @@ runs: - name: Prepare back-end environment uses: ./.github/actions/prepare-backend with: - m2-cache-key: driver-${{ inputs.junit-name }} + m2-cache-key: driver - name: Build static viz frontend run: yarn build-static-viz shell: bash @@ -25,7 +25,7 @@ runs: uses: dorny/test-reporter@v1 if: failure() with: - path: 'target/junit/**/*_test.xml' + path: "target/junit/**/*_test.xml" name: JUnit Test Report ${{ inputs.junit-name }} reporter: java-junit list-suites: failed -- GitLab