From bbabf0a3f306b20fff250de66443cbd07ed63a5b Mon Sep 17 00:00:00 2001 From: Jens Kutzsche Date: Thu, 14 Apr 2022 10:42:37 +0200 Subject: [PATCH] chore(Build): disables cache to fix an error with `actions/setup-java` --- .github/workflows/bff_develop.yml | 3 ++- .github/workflows/codeql-analysis.yml | 5 +++-- .github/workflows/release-gitflow.yml | 3 ++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/bff_develop.yml b/.github/workflows/bff_develop.yml index ab65e72e5..d6e4ab2ef 100644 --- a/.github/workflows/bff_develop.yml +++ b/.github/workflows/bff_develop.yml @@ -34,7 +34,8 @@ jobs: with: distribution: 'liberica' java-version: '17' - cache: 'maven' +# There is an error since 12.04. when restoring the cache. +# cache: 'maven' - name: Create image tag id: meta diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 048387afd..2191ba892 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -33,8 +33,9 @@ jobs: with: distribution: 'liberica' java-version: '17' - cache: 'maven' - +# There is an error since 12.04. when restoring the cache. +# cache: 'maven' + # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v1 diff --git a/.github/workflows/release-gitflow.yml b/.github/workflows/release-gitflow.yml index 2776b4709..78e4ac89f 100644 --- a/.github/workflows/release-gitflow.yml +++ b/.github/workflows/release-gitflow.yml @@ -33,7 +33,8 @@ jobs: with: distribution: 'liberica' java-version: '17' - cache: 'maven' +# There is an error since 12.04. when restoring the cache. +# cache: 'maven' - name: Login to DockerHub uses: docker/login-action@v1