Skip to content

Commit bfd6c45

Browse files
Merge pull request #362 from NeoCoderMatrix86/CorrectionsFromMergeMaster
Update .net
2 parents 95f9c3e + bd0ad68 commit bfd6c45

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/run_unit_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
- uses: actions/[email protected]
1414

1515
# sets up .NET
16-
# version can be found here https://dotnet.microsoft.com/en-us/download/dotnet/7.0
16+
# version can be found here https://dotnet.microsoft.com/en-us/download/dotnet/8.0
1717
- name: Setup .NET
1818
uses: actions/setup-dotnet@v4
1919
with:
20-
dotnet-version: '7.0.101'
20+
dotnet-version: '8.0.203'
2121

2222
- name: Install wasm-tools
23-
run: dotnet workload install wasm-tools-net7
23+
run: dotnet workload install wasm-tools
2424

2525
# Only publish when unit tests are ok
2626
- name: Run Unit Tests

netlify/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/usr/bin/env bash
22
set -e
33

4-
## install latest .NET 7.0 release
4+
## install latest .NET 8.0 release
55
pushd /tmp
66
wget https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.sh
77
chmod u+x /tmp/dotnet-install.sh
8-
/tmp/dotnet-install.sh --channel 7.0
8+
/tmp/dotnet-install.sh --channel 8.0
99
popd
1010

1111
## Install wasm-tools

0 commit comments

Comments
 (0)