Skip to content

Commit

Permalink
trying to fix warning when running actions
Browse files Browse the repository at this point in the history
'Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/setup-dotnet@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/'
  • Loading branch information
adrianoc committed Apr 11, 2024
1 parent e0218f3 commit 8497784
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cecilifier-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ jobs:
RunTests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- run: dotnet tool install --global dotnet-ilverify --version 8.0.0
- run: dotnet restore
- run: dotnet test --filter 'TestCategory !~ Issues' --collect:"XPlat Code Coverage"
- run: dotnet format style --verify-no-changes
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4

0 comments on commit 8497784

Please sign in to comment.