Skip to content

Commit

Permalink
Install the latest dotnet 8 version on all non Windows builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Jan 18, 2025
1 parent 15bcd01 commit f33b571
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

- name: Install dependencies
run: build/linux-x64/install.dependencies.sh

Expand Down Expand Up @@ -49,6 +53,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

- name: Install dependencies
run: build/linux-musl-x64/install.dependencies.sh

Expand Down Expand Up @@ -78,7 +86,7 @@ jobs:

- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
dotnet-version: 8.0.x

- name: Install dependencies
run: build/linux-arm64/install.dependencies.sh
Expand Down Expand Up @@ -107,6 +115,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

- name: Install dependencies
run: build/macos-x64/install.dependencies.sh

Expand All @@ -128,6 +140,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

- name: Install dependencies
run: build/macos-arm64/install.dependencies.sh

Expand Down

0 comments on commit f33b571

Please sign in to comment.