Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/nuget_update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:


- name: Cache nuget packages
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7
env:
cache-name: cache-nuget-modules
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ossar-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

# Set up .NET SDK 8.0.414 which matches the version used in global.json in the repo root.
- name: Setup .NET SDK 8.0.414
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.414

Expand Down Expand Up @@ -87,6 +87,6 @@ jobs:

- name: Upload results to Security tab
if: steps.skip_check.outputs.should_skip != 'true'
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7
uses: github/codeql-action/upload-sarif@cdefb33c0f6224e58673d9004f47f7cb3e328b89
with:
sarif_file: ${{ steps.ossar.outputs.sarifFile }}
8 changes: 4 additions & 4 deletions .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:

- name: Initialize CodeQL
if: inputs.build_codeql == true && steps.skip_check.outputs.should_skip != 'true'
uses: github/codeql-action/init@5d4e8d1aca955e8d8589aabd499c5cae939e33c7
uses: github/codeql-action/init@cdefb33c0f6224e58673d9004f47f7cb3e328b89
with:
languages: 'cpp'

Expand All @@ -114,7 +114,7 @@ jobs:

- name: Cache chocolatey packages
if: steps.skip_check.outputs.should_skip != 'true'
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7
env:
cache-name: cache-choco-packages
with:
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:

- name: Cache nuget packages
if: steps.skip_check.outputs.should_skip != 'true'
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7
env:
cache-name: cache-nuget-modules
with:
Expand Down Expand Up @@ -246,4 +246,4 @@ jobs:

- name: Perform CodeQL Analysis
if: inputs.build_codeql == true && steps.skip_check.outputs.should_skip != 'true'
uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7
uses: github/codeql-action/analyze@cdefb33c0f6224e58673d9004f47f7cb3e328b89
2 changes: 1 addition & 1 deletion .github/workflows/scorecards-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ jobs:
# Upload the results to GitHub's code scanning dashboard.
- name: "Upload to code-scanning"
if: github.ref_name == 'main'
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7
uses: github/codeql-action/upload-sarif@cdefb33c0f6224e58673d9004f47f7cb3e328b89
with:
sarif_file: results.sarif
Loading