Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
Install latest .NET SDK, bump actions and use Node v20.
  • Loading branch information
martincostello authored Apr 11, 2024
1 parent 39edc61 commit f224de2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ on:
push:
branches: [ dev ]
paths-ignore:
- '**/*.gitattributes'
- '**/*.gitignore'
- '**/*.md'
- '**/*.gitattributes'
- '**/*.gitignore'
- '**/*.md'
pull_request:
branches: [ dev ]
workflow_dispatch:
Expand All @@ -25,18 +25,18 @@ jobs:
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18.x'
node-version: '20.x'

- name: Install packages
run: |
npm ci
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.100'
dotnet-version: '8.0.204'

- name: Test
run: |
Expand Down

0 comments on commit f224de2

Please sign in to comment.