Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v1
- uses: actions/setup-dotnet@v2
with:
dotnet-version: "6.0.x"

Expand All @@ -52,7 +52,7 @@ jobs:
tools: licensefinder

- name: Enable NuGet cache
uses: actions/cache@v2.1.7
uses: actions/cache@v3.0.8
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
Expand Down Expand Up @@ -92,12 +92,12 @@ jobs:
with:
java-version: 1.11

- uses: actions/setup-dotnet@v1
- uses: actions/setup-dotnet@v2
with:
dotnet-version: "6.0.x"

- name: Enable NuGet cache
uses: actions/cache@v2.1.7
uses: actions/cache@v3.0.8
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
Expand Down Expand Up @@ -177,12 +177,12 @@ jobs:
with:
fetch-depth: 0

- uses: actions/setup-dotnet@v1
- uses: actions/setup-dotnet@v2
with:
dotnet-version: "6.0.x"

- name: Enable NuGet cache
uses: actions/cache@v2.1.7
uses: actions/cache@v3.0.8
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
- name: Install grp
run: dotnet tool install gpr -g

- uses: actions/setup-dotnet@v1
- uses: actions/setup-dotnet@v2
env:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
Expand All @@ -281,7 +281,7 @@ jobs:
- name: Install grp
run: dotnet tool install gpr -g

- uses: actions/setup-dotnet@v1
- uses: actions/setup-dotnet@v2
env:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
Expand Down Expand Up @@ -314,7 +314,7 @@ jobs:
run: dotnet nuget push ${{ steps.download.outputs.download-path }}/nuget/*.nupkg -s https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET }} --skip-duplicate

- name: Extract owner and repo
uses: jungwinter/split@v1
uses: jungwinter/split@v2
id: repo
with:
seperator: "/"
Expand Down