From b9e337421c485512f346a4101d5a529273e3ab5a Mon Sep 17 00:00:00 2001 From: SoLetsDev <74216496+SoLetsDev@users.noreply.github.com> Date: Wed, 16 Aug 2023 08:32:04 -0700 Subject: [PATCH] removing 5jun from ci-api-build.and.test.yml. Copied this example https://github.com/actions/cache/blob/main/examples.md#java---maven --- .github/workflows/ci-api-build.and.test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-api-build.and.test.yml b/.github/workflows/ci-api-build.and.test.yml index 374e7b7..127cc56 100644 --- a/.github/workflows/ci-api-build.and.test.yml +++ b/.github/workflows/ci-api-build.and.test.yml @@ -35,9 +35,9 @@ jobs: - uses: actions/cache@v3 with: path: ~/.m2/repository - key: ${{ runner.os }}-maven-5Jun-${{ hashFiles('**/pom.xml') }} + key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | - ${{ runner.os }}-maven-5Jun- + ${{ runner.os }}-maven- - name: Run unit tests run: mvn -f pom.xml clean package - name: Run Trivy vulnerability scanner in repo mode