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 fd2225f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cecilifier-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ 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
Expand Down

0 comments on commit fd2225f

Please sign in to comment.