Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@ updates:
- dependency-name: "Microsoft.AspNetCore.WebUtilities"
- dependency-name: "Microsoft.Bcl.AsyncInterfaces"
- dependency-name: "System.Text.Json"
# The following should not be bumped until we use .NET 9+, otherwise we'll get
# error CS8032: Could not load file or assembly 'System.Collections.Immutable, Version=9.0.0.0
- dependency-name: "Microsoft.CodeAnalysis.BannedApiAnalyzers"
- dependency-name: "Microsoft.CodeAnalysis.PublicApiAnalyzers"
# LibGit2Sharp 0.31.0+ no longer targets net6.0
- dependency-name: "LibGit2Sharp"
rebase-strategy: auto
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0 # Get all the history so MinGit can compute the version
- name: Set up latest .NET 8.0
- name: Set up latest .NET 9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
dotnet-version: "9.0.x"
- run: dotnet pack NGitLab.sln --configuration Release --output ${{env.NuGetDirectory}} /bl
- uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -73,10 +73,10 @@ jobs:
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up latest .NET 8.0
- name: Set up latest .NET 9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
dotnet-version: "9.0.x"
- name: Set artifact name
id: set-artifact-name
run: |
Expand Down Expand Up @@ -112,10 +112,10 @@ jobs:
with:
name: nuget
path: ${{env.NuGetDirectory}}
- name: Set up latest .NET 8.0
- name: Set up latest .NET 9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
dotnet-version: "9.0.x"
- name: Publish NuGet packages
run: |
Write-Host "Current ref: $env:GITHUB_REF"
Expand Down
Loading