Skip to content

Commit

Permalink
update workflows to dotnet 9
Browse files Browse the repository at this point in the history
  • Loading branch information
NielsPilgaard committed Dec 28, 2024
1 parent e4f1cab commit d3feeae
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/backgroundjobs_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup dotnet 7.0
- name: Setup dotnet 9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: "7.0.x"
dotnet-version: "9.0.x"

- name: Restore NuGet packages
run: dotnet restore ./src/Pilgaard.BackgroundJobs/Pilgaard.BackgroundJobs.csproj
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/backgroundjobs_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup dotnet 7.0
- name: Setup dotnet 9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: "7.0.x"
dotnet-version: "9.0.x"

- name: Restore NuGet packages
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cronjobs_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup dotnet 7.0
- name: Setup dotnet 9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: "7.0.x"
dotnet-version: "9.0.x"

- name: Restore NuGet packages
run: dotnet restore ./src/Pilgaard.CronJobs/Pilgaard.CronJobs.csproj
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cronjobs_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup dotnet 7.0
- name: Setup dotnet 9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: "7.0.x"
dotnet-version: "9.0.x"

- name: Restore NuGet packages
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/recurringjobs_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup dotnet 7.0
- name: Setup dotnet 9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: "7.0.x"
dotnet-version: "9.0.x"

- name: Restore NuGet packages
run: dotnet restore ./src/Pilgaard.RecurringJobs/Pilgaard.RecurringJobs.csproj
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/recurringjobs_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup dotnet 7.0
- name: Setup dotnet 9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: "7.0.x"
dotnet-version: "9.0.x"

- name: Restore NuGet packages
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scheduledjobs_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup dotnet 7.0
- name: Setup dotnet 9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: "7.0.x"
dotnet-version: "9.0.x"

- name: Restore NuGet packages
run: dotnet restore ./src/Pilgaard.ScheduledJobs/Pilgaard.ScheduledJobs.csproj
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scheduledjobs_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup dotnet 7.0
- name: Setup dotnet 9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: "7.0.x"
dotnet-version: "9.0.x"

- name: Restore NuGet packages
run: |
Expand Down
1 change: 1 addition & 0 deletions Pilgaard.BackgroundJobs.sln
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ Global
{69CCFA55-D43E-43B1-8659-F8A4BD909471} = {F80C4EC1-D73B-4602-9B01-BD98ECDE3905}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
FileExplorer = .github\workflows\
SolutionGuid = {AE30DB9E-1DB2-4346-9C9E-A487459AA94B}
EndGlobalSection
EndGlobal

0 comments on commit d3feeae

Please sign in to comment.