From 8447285ef8f4d7309e8fb920f75498225d64ed24 Mon Sep 17 00:00:00 2001 From: games647 Date: Wed, 5 Apr 2023 10:08:16 +0200 Subject: [PATCH] Remove redundant cache from action runner --- .github/workflows/codeql-analysis.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 5c1b7a2e..2eeb9e5c 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -40,7 +40,7 @@ jobs: uses: actions/setup-java@v3 with: distribution: 'temurin' - java-version: 189 + java-version: 19 cache: 'maven' # Initializes the CodeQL tools for scanning. @@ -49,14 +49,6 @@ jobs: with: languages: ${{ matrix.language }} - # Cache build process too like in the maven config - - uses: actions/cache@v3.3.1 - with: - path: ~/.m2/repository - key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven- - # Auto build attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild