Skip to content

Commit

Permalink
Uplifted all the actions in workflow. Sonar now using java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
Zegis committed Nov 19, 2023
1 parent 682606a commit 919dd72
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4.1.1
- name: Setup .NET
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: 8.0.x
- name: Setup Java JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v3.13.0
with:
java-version: 1.11
java-version: 17
- name: Restore dependencies
run: dotnet restore
- name: Cache SonarCloud packages
uses: actions/cache@v1
uses: actions/cache@v3.3.2
with:
path: ~\sonar\cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache SonarCloud scanner
id: cache-sonar-scanner
uses: actions/cache@v1
uses: actions/cache@v3.3.2
with:
path: .\.sonar\scanner
key: ${{ runner.os }}-sonar-scanner
Expand Down

0 comments on commit 919dd72

Please sign in to comment.