Skip to content

Commit

Permalink
fix: Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasMH committed Nov 24, 2024
1 parent a830f31 commit 67c921f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.100"
dotnet-version: "9.0"
cache: true
cache-dependency-path: src/ToMqttNet/packages.lock.json
- name: Restore
Expand All @@ -48,11 +48,11 @@ jobs:
if: github.event_name == 'release'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.100"
dotnet-version: "9.0"
cache: true
cache-dependency-path: src/ToMqttNet/packages.lock.json
- name: Create Release NuGet package
Expand Down

0 comments on commit 67c921f

Please sign in to comment.