File tree Expand file tree Collapse file tree 7 files changed +21
-21
lines changed Expand file tree Collapse file tree 7 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ jobs:
2020
2121 steps :
2222 - name : Checkout
23- uses : actions/checkout@v4
23+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2424 with :
2525 fetch-depth : 0
2626 submodules : recursive
2727
2828 - name : Setup .NET SDK
29- uses : actions/setup-dotnet@v4
29+ uses : actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4
3030 env :
3131 NUGET_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3232 with :
@@ -55,13 +55,13 @@ jobs:
5555
5656 steps :
5757 - name : Checkout
58- uses : actions/checkout@v4
58+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
5959 with :
6060 fetch-depth : 0
6161 submodules : recursive
6262
6363 - name : Setup .NET SDK
64- uses : actions/setup-dotnet@v4
64+ uses : actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4
6565 env :
6666 NUGET_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
6767 with :
8787
8888 - name : Publish NuGet packages (fork)
8989 if : github.event.pull_request.head.repo.fork == true
90- uses : actions/upload-artifact@v4.5.0
90+ uses : actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
9191 with :
9292 name : nupkgs
9393 path : src/**/*.nupkg
Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ jobs:
1919 runs-on : ${{ matrix.os }}
2020
2121 steps :
22- - uses : actions/checkout@v4
22+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2323 with :
2424 fetch-depth : 0
2525
2626 - name : Setup .NET SDK
27- uses : actions/setup-dotnet@v4
27+ uses : actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4
2828 env :
2929 NUGET_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3030 with :
3636 - name : Run Test
3737 run : dotnet test --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
3838
39- - uses : codecov/codecov-action@v5.3.1
39+ - uses : codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1
4040 with :
4141 name : Code Coverage for ${{ matrix.os }}
4242 fail_ci_if_error : true
Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ jobs:
3838
3939 steps :
4040 - name : Checkout repository
41- uses : actions/checkout@v4
41+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
4242
4343 # Initializes the CodeQL tools for scanning.
4444 - name : Initialize CodeQL
45- uses : github/codeql-action/init@v3
45+ uses : github/codeql-action/init@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3
4646 with :
4747 languages : ${{ matrix.language }}
4848 # If you wish to specify custom queries, you can do so here or in a config file.
5656 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5757 # If this step fails, then you should remove it and run the build manually (see below)
5858 - name : Autobuild
59- uses : github/codeql-action/autobuild@v3
59+ uses : github/codeql-action/autobuild@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3
6060
6161 # ℹ️ Command-line programs to run using the OS shell.
6262 # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
6969 # ./location_of_script_within_repo/buildscript.sh
7070
7171 - name : Perform CodeQL Analysis
72- uses : github/codeql-action/analyze@v3
72+ uses : github/codeql-action/analyze@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ jobs:
1212
1313 steps :
1414 - name : Check out code
15- uses : actions/checkout@v4
15+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1616
1717 - name : Setup .NET SDK
18- uses : actions/setup-dotnet@v4
18+ uses : actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4
1919 with :
2020 dotnet-version : 9.0.x
2121
Original file line number Diff line number Diff line change @@ -14,12 +14,12 @@ jobs:
1414 e2e-tests :
1515 runs-on : ubuntu-latest
1616 steps :
17- - uses : actions/checkout@v4
17+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1818 with :
1919 fetch-depth : 0
2020
2121 - name : Setup .NET SDK
22- uses : actions/setup-dotnet@v4
22+ uses : actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4
2323 env :
2424 NUGET_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
2525 with :
Original file line number Diff line number Diff line change 1212 name : Validate PR title
1313 runs-on : ubuntu-latest
1414 steps :
15- - uses : amannn/action-semantic-pull-request@v5
15+ - uses : amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5
1616 env :
1717 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1010 runs-on : ubuntu-latest
1111
1212 steps :
13- - uses : google-github-actions/release-please-action@v3
13+ - uses : google-github-actions/release-please-action@db8f2c60ee802b3748b512940dde88eabd7b7e01 # v3
1414 id : release
1515 with :
1616 command : manifest
@@ -27,12 +27,12 @@ jobs:
2727 if : ${{ needs.release-please.outputs.release_created }}
2828
2929 steps :
30- - uses : actions/checkout@v4
30+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
3131 with :
3232 fetch-depth : 0
3333
3434 - name : Setup .NET SDK
35- uses : actions/setup-dotnet@v4
35+ uses : actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4
3636 env :
3737 NUGET_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3838 with :
5757 if : ${{ needs.release-please.outputs.release_created }}
5858
5959 steps :
60- - uses : actions/checkout@v4
60+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
6161 with :
6262 fetch-depth : 0
6363
You can’t perform that action at this time.
0 commit comments