Skip to content

Commit

Permalink
Update actions to use Node.js 20
Browse files Browse the repository at this point in the history
  • Loading branch information
ektrah committed Apr 27, 2024
1 parent 471baf4 commit d00e9f5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
steps:
- name: Set up .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
- run: dotnet --info
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test (.NET 8.0/Debug)
run: dotnet test tests -f net8.0 -c Debug
- name: Test (.NET 8.0/Release)
Expand Down Expand Up @@ -48,13 +48,13 @@ jobs:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
steps:
- name: Set up .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
- run: dotnet --info
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test (.NET 8.0/Debug)
run: dotnet test tests -f net8.0 -c Debug
- name: Test (.NET 8.0/Release)
Expand All @@ -76,8 +76,6 @@ jobs:
- os: fedora:38
- os: fedora:39
- os: fedora:40
- os: ubuntu:16.04
- os: ubuntu:18.04
- os: ubuntu:20.04
- os: ubuntu:22.04
- os: ubuntu:24.04
Expand All @@ -101,13 +99,13 @@ jobs:
run: apt-get -qq update && apt-get -qq install --yes --no-install-recommends curl ca-certificates gettext
if: ${{ startsWith(matrix.os, 'ubuntu') }}
- name: Set up .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
- run: dotnet --info
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test (.NET 8.0/Debug)
run: dotnet test tests -f net8.0 -c Debug
- name: Test (.NET 8.0/Release)
Expand All @@ -132,7 +130,7 @@ jobs:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
steps:
- run: dotnet --info
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test (.NET 8.0/Debug)
run: dotnet test tests -f net8.0 -c Debug
- name: Test (.NET 8.0/Release)
Expand Down
4 changes: 1 addition & 3 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ has been tested to run on the following platforms and .NET versions:
| Fedora | 38 | x64 | 8.0.4 / 6.0.29 |
| | 39 | x64 | 8.0.4 / 6.0.29 |
| | 40 | x64 | 8.0.4 / 6.0.29 |
| Ubuntu | 16.04 | x64 | 8.0.4 / 6.0.29 |
| | 18.04 | x64 | 8.0.4 / 6.0.29 |
| | 20.04 | x64 | 8.0.4 / 6.0.29 |
| Ubuntu | 20.04 | x64 | 8.0.4 / 6.0.29 |
| | 22.04 | x64 | 8.0.4 / 6.0.29 |
| | 24.04 | x64 | 8.0.4 / 6.0.29 |

Expand Down

0 comments on commit d00e9f5

Please sign in to comment.