Skip to content

Commit 6d7bc6e

Browse files
authored
Merge pull request #4023 from thomasohagen/patch-1
Update building-and-testing-net.md
2 parents 8beda3e + 794bdd4 commit 6d7bc6e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

content/actions/guides/building-and-testing-net.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
steps:
5050
- uses: actions/checkout@v2
5151
- name: Setup .NET Core SDK ${{ matrix.dotnet }}
52-
uses: actions/setup-dotnet@v1.6.0
52+
uses: actions/setup-dotnet@v1.7.2
5353
with:
5454
dotnet-version: ${{ matrix.dotnet-version }}
5555
- name: Install dependencies
@@ -86,7 +86,7 @@ jobs:
8686
steps:
8787
- uses: actions/checkout@v2
8888
- name: Setup dotnet ${{ matrix.dotnet-version }}
89-
uses: actions/setup-dotnet@v1.6.0
89+
uses: actions/setup-dotnet@v1.7.2
9090
with:
9191
dotnet-version: ${{ matrix.dotnet-version }}
9292
# You can test your matrix by printing the current dotnet version
@@ -118,7 +118,7 @@ You can configure your job to use a specific version of .NET, such as `3.1.3`. A
118118
steps:
119119
- uses: actions/checkout@v2
120120
- name: Setup dotnet
121-
uses: actions/setup-dotnet@v1.6.0
121+
uses: actions/setup-dotnet@v1.7.2
122122
with:
123123
dotnet-version: '3.1.x'
124124
- name: Install dependencies
@@ -139,7 +139,7 @@ For more information, see "[Caching dependencies to speed up workflows](/actions
139139
steps:
140140
- uses: actions/checkout@v2
141141
- name: Setup dotnet
142-
uses: actions/setup-dotnet@v1.6.0
142+
uses: actions/setup-dotnet@v1.7.2
143143
with:
144144
dotnet-version: '3.1.x'
145145
- uses: actions/cache@v2
@@ -171,7 +171,7 @@ You can use the same commands that you use locally to build and test your code.
171171
steps:
172172
- uses: actions/checkout@v2
173173
- name: Setup dotnet
174-
uses: actions/setup-dotnet@v1.6.0
174+
uses: actions/setup-dotnet@v1.7.2
175175
with:
176176
dotnet-version: '3.1.x'
177177
- name: Install dependencies
@@ -206,7 +206,7 @@ jobs:
206206
steps:
207207
- uses: actions/checkout@v2
208208
- name: Setup dotnet
209-
uses: actions/setup-dotnet@v1.6.0
209+
uses: actions/setup-dotnet@v1.7.2
210210
with:
211211
dotnet-version: ${{ matrix.dotnet-version }}
212212
- name: Install dependencies

0 commit comments

Comments
 (0)