Skip to content

Commit

Permalink
Updated GitHub Actions to latest versions & allowing SonarCloud analy…
Browse files Browse the repository at this point in the history
…sis to run on external pull requests

WE2-963
WE2-1011

Signed-off-by: Mihkel Kivisild <[email protected]>
  • Loading branch information
Mihkel Kivisild committed Nov 11, 2024
1 parent bbd6281 commit 3e5700e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverity-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x # SDK Version to use.
dotnet-version: 8.0.x # SDK Version to use.

- name: Cache Nuget packages
uses: actions/cache@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
dotnet-version: 8.0.x # SDK Version to use.

- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.1
uses: microsoft/setup-msbuild@v2
with:
vs-version: 17.1 # Visual Studio Version to use.
vs-version: 17.11 # Visual Studio Version to use.

- name: Setup VSTest
uses: darenm/Setup-VSTest@v1.2
uses: darenm/Setup-VSTest@v1.3

- name: Cache Nuget packages
uses: actions/cache@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sonarcloud-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: SonarCloud code analysis

on: [push]
on: [push, pull_request, pull_request_target]

jobs:
analyze:
Expand All @@ -16,7 +16,7 @@ jobs:
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x # SDK Version to use.
dotnet-version: 8.0.x # SDK Version to use.

- name: Set up JDK 21
uses: actions/setup-java@v4
Expand Down

0 comments on commit 3e5700e

Please sign in to comment.