Remove redundant cache from action runner

This commit is contained in:
games647
2023-04-05 10:08:16 +02:00
parent edae388b37
commit 8447285ef8

View File

@ -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