Skip to content

Commit bbabf0a

Browse files
committed
chore(Build): disables cache to fix an error with actions/setup-java
1 parent e23619b commit bbabf0a

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/bff_develop.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ jobs:
3434
with:
3535
distribution: 'liberica'
3636
java-version: '17'
37-
cache: 'maven'
37+
# There is an error since 12.04. when restoring the cache.
38+
# cache: 'maven'
3839

3940
- name: Create image tag
4041
id: meta

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ jobs:
3333
with:
3434
distribution: 'liberica'
3535
java-version: '17'
36-
cache: 'maven'
37-
36+
# There is an error since 12.04. when restoring the cache.
37+
# cache: 'maven'
38+
3839
# Initializes the CodeQL tools for scanning.
3940
- name: Initialize CodeQL
4041
uses: github/codeql-action/init@v1

.github/workflows/release-gitflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ jobs:
3333
with:
3434
distribution: 'liberica'
3535
java-version: '17'
36-
cache: 'maven'
36+
# There is an error since 12.04. when restoring the cache.
37+
# cache: 'maven'
3738

3839
- name: Login to DockerHub
3940
uses: docker/login-action@v1

0 commit comments

Comments
 (0)