Skip to content

Commit

Permalink
Merge pull request #497 from muno92/dotnet9
Browse files Browse the repository at this point in the history
Support .NET 9
  • Loading branch information
muno92 authored Nov 27, 2024
2 parents 76fb5c7 + 32693a5 commit 22d7082
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/reusable-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
fail-fast: false
matrix:
operating-system: [ ubuntu-latest, windows-latest, macos-latest ]
dotnet-version: [ '3.1', '5.0', '6.0', '7.0', '8.0' ]
dotnet-version: [ '3.1', '5.0', '6.0', '7.0', '8.0', '9.0' ]
# macos-latest is ARM Runner, so .NET Core 3.1 and .NET 5 cannot be used.
runs-on: ${{ (contains(fromJSON('["3.1", "5.0"]'), matrix.dotnet-version) && matrix.operating-system == 'macos-latest' && 'macos-13') || matrix.operating-system }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.branch || github.ref_name }}
- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
id: setup-dotnet
with:
dotnet-version: ${{ matrix.dotnet-version }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
id: setup-dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x' # [3.1.x, 5.0.x, 6.0.x, 7.0.x, 8.0.x]
dotnet-version: '9.0.x' # [3.1.x, 5.0.x, 6.0.x, 7.0.x, 8.0.x, 9.0.x]
- name: Restore
run: dotnet restore
- name: Inspect code
Expand Down

0 comments on commit 22d7082

Please sign in to comment.