@@ -79,26 +79,26 @@ jobs:
7979 runs-on : ${{ matrix.os }}
8080 steps :
8181 - name : Checkout
82- uses : actions/checkout@v2.4 .2
82+ uses : actions/checkout@v3.0 .2
8383 with :
8484 clean : ' false'
8585 fetch-depth : ' 0'
8686 - name : Fetch all history for all tags and branches
8787 run : |
8888 git fetch --prune
8989 - name : NuGet Cache
90- uses : actions/cache@v2
90+ uses : actions/cache@v3
9191 with :
9292 path : ' ${{ github.workspace }}/.nuget/packages'
9393 key : " ${{ runner.os }}-nuget-${{ hashFiles('**/Directory.Packages.props') }}-${{ hashFiles('**/Directory.Packages.support.props') }}"
9494 restore-keys : |
9595 ${{ runner.os }}-nuget-
9696 - name : 🔨 Use .NET Core 3.1 SDK
97- uses : actions/setup-dotnet@v1.9.1
97+ uses : actions/setup-dotnet@v2.0.0
9898 with :
9999 dotnet-version : ' 3.1.x'
100100 - name : 🔨 Use .NET Core 6.0 SDK
101- uses : actions/setup-dotnet@v1.9.1
101+ uses : actions/setup-dotnet@v2.0.0
102102 with :
103103 dotnet-version : ' 6.0.x'
104104 - name : 🎁 dotnet tool restore
@@ -117,36 +117,36 @@ jobs:
117117 run : |
118118 dotnet nuke Pack --skip
119119 - name : 🐿 Publish Coverage
120- uses : codecov/codecov-action@v1
120+ uses : codecov/codecov-action@v3
121121 with :
122122 name : ' actions-${{ matrix.os }}'
123123 - name : 🏺 Publish logs
124124 if : always()
125- uses : actions/upload-artifact@v2
125+ uses : actions/upload-artifact@v3
126126 with :
127127 name : ' logs'
128128 path : ' artifacts/logs/'
129129 - name : 🏺 Publish coverage data
130130 if : always()
131- uses : actions/upload-artifact@v2
131+ uses : actions/upload-artifact@v3
132132 with :
133133 name : ' coverage'
134134 path : ' coverage/'
135135 - name : 🏺 Publish test data
136136 if : always()
137- uses : actions/upload-artifact@v2
137+ uses : actions/upload-artifact@v3
138138 with :
139139 name : ' test data'
140140 path : ' artifacts/test/'
141141 - name : 🏺 Publish NuGet Packages
142142 if : always()
143- uses : actions/upload-artifact@v2
143+ uses : actions/upload-artifact@v3
144144 with :
145145 name : ' nuget'
146146 path : ' artifacts/nuget/'
147147 - name : 🏺 Publish Docs
148148 if : always()
149- uses : actions/upload-artifact@v2
149+ uses : actions/upload-artifact@v3
150150 with :
151151 name : ' docs'
152152 path : ' artifacts/docs/'
0 commit comments