Skip to content

Commit

Permalink
Merge pull request #428 from muno92/add-support-dotnet-8
Browse files Browse the repository at this point in the history
Add support .NET 8
  • Loading branch information
muno92 authored Nov 19, 2023
2 parents db09f4f + 992b597 commit f5296e4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
pull_request: ${{ steps.tagpr.outputs.pull_request }}
tag: ${{ steps.tagpr.outputs.tag }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- id: tagpr
uses: Songmu/tagpr@v1
env:
Expand All @@ -28,7 +28,7 @@ jobs:
env:
MAJOR_TAG: v1
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Update Tag
run: |
git config --local user.email github-actions[bot]@users.noreply.github.com
Expand All @@ -40,7 +40,7 @@ jobs:
if: ${{ needs.tagpr.outputs.tag == '' && needs.tagpr.outputs.pull_request != '' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ fromJSON(needs.tagpr.outputs.pull_request).head.ref }}
- name: Install Dependencies
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/reusable-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: E2E Test

on:
workflow_call:
workflow_dispatch:

jobs:
e2e_test:
Expand All @@ -10,9 +11,9 @@ jobs:
fail-fast: false
matrix:
operating-system: [ ubuntu-latest, windows-latest, macos-latest ]
dotnet-version: [ '3.1', '5.0', '6.0', '7.0' ]
dotnet-version: [ '3.1', '5.0', '6.0', '7.0', '8.0' ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
lint_unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
npm install
- run: |
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,11 @@ jobs:
name: Inspection
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x' # [3.1.x, 5.0.x, 6.0.x, 7.0.x]
dotnet-version: '8.0.x' # [3.1.x, 5.0.x, 6.0.x, 7.0.x, 8.0.x]
- name: Restore
run: dotnet restore
- name: Inspect code
Expand Down

0 comments on commit f5296e4

Please sign in to comment.