From a2a2da7a8e2d40daa2b22f357234bb0ba7f8683e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Mat=C4=9Bj=C4=8Dek?= Date: Wed, 3 May 2023 11:46:00 +0200 Subject: [PATCH] Updated GitHub Action checkout version and removed cache MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Cache had some failures, and with our count of dependencies it is not much helpful tool. - see https://github.com/actions/runner/issues/449 Signed-off-by: David Matějček --- .github/workflows/linux-jdks-with-current-maven-ci.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/linux-jdks-with-current-maven-ci.yml b/.github/workflows/linux-jdks-with-current-maven-ci.yml index a788b23..7b03aab 100644 --- a/.github/workflows/linux-jdks-with-current-maven-ci.yml +++ b/.github/workflows/linux-jdks-with-current-maven-ci.yml @@ -15,7 +15,7 @@ # specific language governing permissions and limitations # under the License. # -name: JDKBuilds +name: Compatibility on: push: @@ -35,13 +35,7 @@ jobs: runs-on: ubuntu-latest container: "maven:${{ matrix.platform }}" steps: - - uses: actions/checkout@v2 - - uses: actions/cache@v1 - with: - path: ~/.m2/repository - key: ${{ runner.os }}-maven-${{ matrix.platform }}-${{ hashFiles('**/pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven-${{ matrix.platform }}- + - uses: actions/checkout@v3 - name: 'Build' run: mvn -B -V clean verify --fail-at-end