Skip to content

Commit 0e771ec

Browse files
committed
chore(deps): update test and workflow dependencies
1 parent adad890 commit 0e771ec

6 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
dotnet:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@v7
2020
with:
2121
persist-credentials: false
22-
- uses: actions/setup-dotnet@v5
22+
- uses: actions/setup-dotnet@v6
2323
with:
2424
global-json-file: global.json
2525
- run: dotnet restore HitTheKit.sln
@@ -29,7 +29,7 @@ jobs:
2929
repository-contracts:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v6
32+
- uses: actions/checkout@v7
3333
with:
3434
persist-credentials: false
3535
- name: Validate public-readiness contracts
@@ -59,7 +59,7 @@ jobs:
5959
macos-packaging-contracts:
6060
runs-on: macos-15
6161
steps:
62-
- uses: actions/checkout@v6
62+
- uses: actions/checkout@v7
6363
with:
6464
persist-credentials: false
6565
- run: bash tests/scripts/macos-signing-foundation-tests.sh

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
analyze:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v6
18+
- uses: actions/checkout@v7
1919
with:
2020
persist-credentials: false
21-
- uses: actions/setup-dotnet@v5
21+
- uses: actions/setup-dotnet@v6
2222
with:
2323
global-json-file: global.json
2424
- uses: github/codeql-action/init@v4

.github/workflows/pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
url: ${{ steps.deployment.outputs.page_url }}
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v6
27+
- uses: actions/checkout@v7
2828
with:
2929
persist-credentials: false
3030
- uses: actions/configure-pages@v5
31-
- uses: actions/upload-pages-artifact@v4
31+
- uses: actions/upload-pages-artifact@v5
3232
with:
3333
path: website
3434
- name: Deploy website
3535
id: deployment
36-
uses: actions/deploy-pages@v4
36+
uses: actions/deploy-pages@v5

.github/workflows/source-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
env:
2020
RELEASE_VERSION: ${{ inputs.version }}
2121
steps:
22-
- uses: actions/checkout@v6
22+
- uses: actions/checkout@v7
2323
with:
2424
persist-credentials: false
25-
- uses: actions/setup-dotnet@v5
25+
- uses: actions/setup-dotnet@v6
2626
with:
2727
global-json-file: global.json
2828
- name: Verify release input
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
subject-path: artifacts/source/HitTheKit-source-${{ inputs.version }}.tar.gz
4747
- name: Upload source release evidence
48-
uses: actions/upload-artifact@v4
48+
uses: actions/upload-artifact@v7
4949
with:
5050
name: HitTheKit-source-${{ inputs.version }}
5151
path: artifacts/source

tests/HitTheKit.Core.Tests/HitTheKit.Core.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
13+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.9.0" />
1414
<PackageReference Include="xunit" Version="2.9.3" />
15-
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
15+
<PackageReference Include="xunit.runner.visualstudio" Version="4.0.0" />
1616
</ItemGroup>
1717

1818
<ItemGroup>

tests/HitTheKit.MidiCapture.Tests/HitTheKit.MidiCapture.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<IsTestProject>true</IsTestProject>
88
</PropertyGroup>
99
<ItemGroup>
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.9.0" />
1111
<PackageReference Include="xunit" Version="2.9.3" />
12-
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
12+
<PackageReference Include="xunit.runner.visualstudio" Version="4.0.0" />
1313
</ItemGroup>
1414
<ItemGroup>
1515
<ProjectReference Include="../../tools/HitTheKit.MidiCapture/HitTheKit.MidiCapture.csproj" />

0 commit comments

Comments
 (0)