Skip to content

Commit

Permalink
chore(Build): disables cache to fix an error with actions/setup-java
Browse files Browse the repository at this point in the history
  • Loading branch information
jekutzsche committed Apr 14, 2022
1 parent e23619b commit bbabf0a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/bff_develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release-gitflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bbabf0a

Please sign in to comment.