Skip to content

Commit

Permalink
Update checkout and setup-dotnet to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptic-wizard committed Mar 15, 2024
1 parent 0c532d7 commit 80be679
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- uses: ./
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dotnet6noartifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- uses: ./
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dotnet7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
- uses: ./
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ dotnet add package SpecFlow.Plus.LivingDocPlugin
#### Minimal:
```yaml
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.x'
- uses: actions/cryptic-wizard/run-specflow-tests@v1.3.3
Expand All @@ -39,8 +39,8 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.x'
- uses: actions/cryptic-wizard/run-specflow-tests@v1.3.3
Expand All @@ -55,8 +55,8 @@ jobs:
```xml
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
```
* [dotnet.yml](https://github.com/cryptic-wizard/run-specflow-tests/blob/main/.github/workflows/dotnet.yml)
* [dotnetcore.yml](https://github.com/cryptic-wizard/run-specflow-tests/blob/main/.github/workflows/dotnetcore.yml)
* [dotnet6.yml](https://github.com/cryptic-wizard/run-specflow-tests/blob/main/.github/workflows/dotnet6.yml)
* [dotnet7.yml](https://github.com/cryptic-wizard/run-specflow-tests/blob/main/.github/workflows/dotnet7.yml)

#### Optional parameters:
```yaml
Expand Down

0 comments on commit 80be679

Please sign in to comment.