Skip to content

Commit

Permalink
build: Fix caching
Browse files Browse the repository at this point in the history
  • Loading branch information
felipebz committed Feb 2, 2024
1 parent fbeb78d commit e03703f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -31,15 +31,15 @@ jobs:
- name: Cache SonarQube packages
uses: actions/cache@v4
with:
path: ~\sonar\cache
path: ~/sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar

- name: Cache SonarQube scanner
id: cache-sonar-scanner
uses: actions/cache@v4
with:
path: .\.sonar\scanner
path: .sonar/scanner
key: ${{ runner.os }}-sonar-scanner
restore-keys: ${{ runner.os }}-sonar-scanner

Expand Down

0 comments on commit e03703f

Please sign in to comment.