Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
JosepFe committed Sep 5, 2023
1 parent d530bbe commit 96613dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@ jobs:
runs-on: ubuntu-latest # Change to Ubuntu
steps:
- name: Set up JDK 17
uses: actions/setup-java@v2 # Update to the latest version
uses: actions/setup-java@v3 # Update to the latest version
with:
java-version: 17
distribution: 'adopt' # Ubuntu uses AdoptOpenJDK
- uses: actions/checkout@v2 # Update to the latest version
- uses: actions/checkout@v3 # Update to the latest version
with:
fetch-depth: 0
- name: Cache SonarCloud packages
uses: actions/cache@v2 # Update to the latest version
uses: actions/cache@v3 # Update to the latest version
with:
path: ~/.sonar/cache # Change the path to the Linux format
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache SonarCloud scanner
id: cache-sonar-scanner
uses: actions/cache@v2 # Update to the latest version
uses: actions/cache@v3 # Update to the latest version
with:
path: ./.sonar/scanner
key: ${{ runner.os }}-sonar-scanner
Expand Down

0 comments on commit 96613dc

Please sign in to comment.