Skip to content

Commit

Permalink
Update all dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdeago committed Apr 1, 2022
1 parent 1ee3ad9 commit 4bd4343
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 19 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,21 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest ]
net: [ 5.0.x ]
runs-on: ${{ matrix.os }}
steps:

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup .NET ${{ matrix.net }}
uses: actions/setup-dotnet@v1
- name: Setup .NET 5.0 # Needed for ExportAnnotations
uses: actions/setup-dotnet@v2
with:
dotnet-version: ${{ matrix.net }}
dotnet-version: 5.0.x

- name: Setup .NET 6.0
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x

- name: Restore dependencies
run: dotnet restore
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/define-labels.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@v3

- name: Update repository labels
uses: lannonbr/[email protected].0
uses: lannonbr/[email protected].1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/label-pull-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Update repository labels
uses: lannonbr/[email protected].0
uses: lannonbr/[email protected].1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Assign labels to pull request
uses: actions/labeler@v3
uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
5 changes: 1 addition & 4 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
<Project>

<!-- DO NOT MODIFY THIS FILE! Create or modify Common.props instead. -->

<Import Project="Sdk.props" Sdk="Buildvana.Sdk" Version="1.0.0-alpha.14" />

<Import Project="Sdk.props" Sdk="Buildvana.Sdk" /> <!-- Buildvana.Sdk version is specified in global.json -->
</Project>
2 changes: 1 addition & 1 deletion Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

<!-- DO NOT MODIFY THIS FILE! Create or modify Common.targets instead. -->

<Import Project="Sdk.targets" Sdk="Buildvana.Sdk" Version="1.0.0-alpha.14" />
<Import Project="Sdk.targets" Sdk="Buildvana.Sdk" /> <!-- Buildvana.Sdk version is specified in global.json -->

</Project>
8 changes: 4 additions & 4 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Project>

<ItemGroup>
<PackageVersion Include="coverlet.msbuild" Version="3.1.0" />
<PackageVersion Include="coverlet.msbuild" Version="3.1.2" />
<PackageVersion Include="Mono.Cecil" Version="0.11.4" />
<PackageVersion Include="nunit" Version="3.13.2" />
<PackageVersion Include="NUnit3TestAdapter" Version="4.0.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageVersion Include="nunit" Version="3.13.3" />
<PackageVersion Include="NUnit3TestAdapter" Version="4.2.1" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
</ItemGroup>

</Project>
9 changes: 9 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"sdk": {
"version": "6.0.0",
"rollForward": "latestMinor",
"allowPrerelease": false
},
"msbuild-sdks": {
"Buildvana.Sdk": "1.0.0-alpha.15"
}}

0 comments on commit 4bd4343

Please sign in to comment.