Skip to content

Commit f91bfbe

Browse files
committed
Use v3 for all actions
Should get rid of the following warnings: > Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: actions/checkout, actions/setup-dotnet, actions/upload-artifact, actions/checkout
1 parent e6073af commit f91bfbe

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
3030
steps:
3131
- name: Checkout git repository
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333
with:
3434
fetch-depth: 0
3535
- name: Install .NET SDK
36-
uses: actions/setup-dotnet@v1
36+
uses: actions/setup-dotnet@v3
3737
- name: Retrieve cached NuGet packages
3838
uses: actions/cache@v3
3939
with:
@@ -49,13 +49,13 @@ jobs:
4949
run: dotnet test --no-build --logger "html;LogFileName=../../TestResults-${{ runner.os }}.html" --logger "trx;LogFileName=../../TestResults-${{ runner.os }}.trx" --logger GitHubActions
5050
id: dotnet-test
5151
- name: Upload received files from failing tests
52-
uses: actions/upload-artifact@v2
52+
uses: actions/upload-artifact@v3
5353
if: failure()
5454
with:
5555
name: Received-${{ runner.os }}
5656
path: "**/*.received.*"
5757
- name: Upload test results
58-
uses: actions/upload-artifact@v2
58+
uses: actions/upload-artifact@v3
5959
if: always()
6060
with:
6161
name: TestResults-${{ runner.os }}
@@ -89,7 +89,7 @@ jobs:
8989
id: dotnet-pack
9090
- name: Upload NuGet package artifact
9191
if: matrix.os == 'ubuntu-latest'
92-
uses: actions/upload-artifact@v2
92+
uses: actions/upload-artifact@v3
9393
with:
9494
name: ${{ steps.dotnet-pack.outputs.nupkg-filename }}
9595
path: ${{ steps.dotnet-pack.outputs.nupkg-filename }}

0 commit comments

Comments
 (0)