Skip to content

Commit 8ec8c3c

Browse files
committed
update actions used in ci
1 parent 6172c40 commit 8ec8c3c

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/build-and-deploy-docs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v3
1212
- name: Setup .NET
13-
uses: actions/setup-dotnet@v1
13+
uses: actions/setup-dotnet@v3
1414
with:
1515
dotnet-version: '5.0.201'
1616
- name: Restore tools

.github/workflows/build-and-test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: Setup .NET
18-
uses: actions/setup-dotnet@v1
18+
uses: actions/setup-dotnet@v3
1919
with:
2020
dotnet-version: 6.x.x
2121
- name: make script executable
@@ -29,9 +29,9 @@ jobs:
2929
runs-on: windows-latest
3030

3131
steps:
32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v3
3333
- name: Setup .NET
34-
uses: actions/setup-dotnet@v1
34+
uses: actions/setup-dotnet@v3
3535
with:
3636
dotnet-version: 6.x.x
3737
- name: Build and test

.github/workflows/check-formatting.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616

1717
- name: Setup .NET 5
18-
uses: actions/setup-dotnet@v1
18+
uses: actions/setup-dotnet@v3
1919
with:
2020
dotnet-version: '6.x.x'
2121

.github/workflows/push-prerelease.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Setup .NET 6
13-
uses: actions/setup-dotnet@v1
13+
uses: actions/setup-dotnet@v3
1414
with:
1515
dotnet-version: '6.0.301' # I highly recommend fixing a version
1616
include-prerelease: true
1717

18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v3
1919

2020
- name: 'Add myget as source'
2121
run: |

.github/workflows/verify-docs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: windows-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616

1717
- name: Setup .NET 6
18-
uses: actions/setup-dotnet@v1
18+
uses: actions/setup-dotnet@v3
1919
with:
2020
dotnet-version: '6.x.x'
2121

0 commit comments

Comments
 (0)