diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2022-11-13 19:42:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-13 19:42:13 +0100 |
commit | 07872b35275e78174a2ae816dbe9afbd8e38d405 (patch) | |
tree | 1ae76d1afae9a1185374b92941b943bb510e1a2a /.github/workflows/build-msbuild.yml | |
parent | 6d3446b114c4d3c310968ce714e5d579e8baf922 (diff) |
GitHub Actions: update to Node.js 16 actions (#1801)
Fix warnings on recent CI results; example:
https://github.com/ntop/nDPI/actions/runs/3455588082
See: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
Diffstat (limited to '.github/workflows/build-msbuild.yml')
-rw-r--r-- | .github/workflows/build-msbuild.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build-msbuild.yml b/.github/workflows/build-msbuild.yml index 5ec5c5bb1..a121f1a8a 100644 --- a/.github/workflows/build-msbuild.yml +++ b/.github/workflows/build-msbuild.yml @@ -15,7 +15,7 @@ jobs: runs-on: windows-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Add msbuild to PATH uses: microsoft/setup-msbuild@v1.1 @@ -36,7 +36,7 @@ jobs: run: msbuild windows/nDPI.sln -t:rebuild -property:Configuration=Debug-ndpiReader - name: Upload artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: build-artifacts path: windows/bin |