Compare commits

..

4 Commits

Author SHA1 Message Date
dependabot[bot]
671bd081db Bump Spectre.Console from 0.52.0 to 0.53.0 (#315)
* Bump Spectre.Console from 0.52.0 to 0.53.0

---
updated-dependencies:
- dependency-name: Spectre.Console
  dependency-version: 0.53.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Deps

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Smaug123 <3138005+Smaug123@users.noreply.github.com>
2025-10-30 08:02:18 +00:00
dependabot[bot]
4acb66a563 Bump actions/upload-artifact from 4 to 5 (#314) 2025-10-27 17:41:08 +00:00
dependabot[bot]
c9a8748d31 Bump actions/download-artifact from 5 to 6 (#313) 2025-10-27 17:38:20 +00:00
patrick-conscriptus[bot]
ecff89edcf Automated commit (#312)
Co-authored-by: patrick-conscriptus[bot] <175414948+patrick-conscriptus[bot]@users.noreply.github.com>
2025-10-26 00:47:22 +00:00
4 changed files with 16 additions and 16 deletions

View File

@@ -209,12 +209,12 @@ jobs:
- name: Pack - name: Pack
run: nix develop --command dotnet pack --configuration Release run: nix develop --command dotnet pack --configuration Release
- name: Upload NuGet artifact (lib) - name: Upload NuGet artifact (lib)
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v5
with: with:
name: nuget-package-lib name: nuget-package-lib
path: WoofWare.NUnitTestRunner.Lib/bin/Release/WoofWare.NUnitTestRunner.Lib.*.nupkg path: WoofWare.NUnitTestRunner.Lib/bin/Release/WoofWare.NUnitTestRunner.Lib.*.nupkg
- name: Upload NuGet artifact (tool) - name: Upload NuGet artifact (tool)
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v5
with: with:
name: nuget-package-tool name: nuget-package-tool
path: WoofWare.NUnitTestRunner/bin/Release/WoofWare.NUnitTestRunner.*.nupkg path: WoofWare.NUnitTestRunner/bin/Release/WoofWare.NUnitTestRunner.*.nupkg
@@ -224,7 +224,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Download NuGet artifact (lib) - name: Download NuGet artifact (lib)
uses: actions/download-artifact@v5 uses: actions/download-artifact@v6
with: with:
name: nuget-package-lib name: nuget-package-lib
path: packed-lib path: packed-lib
@@ -232,7 +232,7 @@ jobs:
# Verify that there is exactly one nupkg in the artifact that would be NuGet published # Verify that there is exactly one nupkg in the artifact that would be NuGet published
run: if [[ $(find packed-lib -maxdepth 1 -name 'WoofWare.NUnitTestRunner.Lib.*.nupkg' -printf c | wc -c) -ne "1" ]]; then exit 1; fi run: if [[ $(find packed-lib -maxdepth 1 -name 'WoofWare.NUnitTestRunner.Lib.*.nupkg' -printf c | wc -c) -ne "1" ]]; then exit 1; fi
- name: Download NuGet artifact (tool) - name: Download NuGet artifact (tool)
uses: actions/download-artifact@v5 uses: actions/download-artifact@v6
with: with:
name: nuget-package-tool name: nuget-package-tool
path: packed-tool path: packed-tool
@@ -259,7 +259,7 @@ jobs:
contents: read contents: read
steps: steps:
- name: Download NuGet artifact - name: Download NuGet artifact
uses: actions/download-artifact@v5 uses: actions/download-artifact@v6
with: with:
name: nuget-package-lib name: nuget-package-lib
path: packed path: packed
@@ -278,7 +278,7 @@ jobs:
contents: read contents: read
steps: steps:
- name: Download NuGet artifact - name: Download NuGet artifact
uses: actions/download-artifact@v5 uses: actions/download-artifact@v6
with: with:
name: nuget-package-tool name: nuget-package-tool
path: packed path: packed
@@ -304,7 +304,7 @@ jobs:
extra_nix_config: | extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: Download NuGet artifact - name: Download NuGet artifact
uses: actions/download-artifact@v5 uses: actions/download-artifact@v6
with: with:
name: nuget-package-lib name: nuget-package-lib
path: packed path: packed
@@ -341,7 +341,7 @@ jobs:
extra_nix_config: | extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: Download NuGet artifact - name: Download NuGet artifact
uses: actions/download-artifact@v5 uses: actions/download-artifact@v6
with: with:
name: nuget-package-tool name: nuget-package-tool
path: packed path: packed
@@ -372,7 +372,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v5 - uses: actions/checkout@v5
- name: Download NuGet artifact (tool) - name: Download NuGet artifact (tool)
uses: actions/download-artifact@v5 uses: actions/download-artifact@v6
with: with:
name: ${{ matrix.artifact }} name: ${{ matrix.artifact }}
- name: Compute package path - name: Compute package path
@@ -408,7 +408,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v5 - uses: actions/checkout@v5
- name: Download NuGet artifact (tool) - name: Download NuGet artifact (tool)
uses: actions/download-artifact@v5 uses: actions/download-artifact@v6
with: with:
name: ${{ matrix.artifact }} name: ${{ matrix.artifact }}
- name: Compute package path - name: Compute package path

View File

@@ -35,7 +35,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Spectre.Console" Version="0.52.0" /> <PackageReference Include="Spectre.Console" Version="0.53.0" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

6
flake.lock generated
View File

@@ -20,11 +20,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1760596604, "lastModified": 1761349956,
"narHash": "sha256-J/i5K6AAz/y5dBePHQOuzC7MbhyTOKsd/GLezSbEFiM=", "narHash": "sha256-tH3wHnOJms+U4k/rK2Nn1RfBrhffX92jLP/2VndSn0w=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "3cbe716e2346710d6e1f7c559363d14e11c32a43", "rev": "02f2cb8e0feb4596d20cc52fda73ccee960e3538",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -276,8 +276,8 @@
}, },
{ {
"pname": "Spectre.Console", "pname": "Spectre.Console",
"version": "0.52.0", "version": "0.53.0",
"hash": "sha256-enGa3do7uHQFJOGha+IJZB/rlYhZDvLYbNYgZ4B5V8g=" "hash": "sha256-XnzZoDD32DZqK/tmPVaXaclJJzb25SyMLzQ7xX3XLQw="
}, },
{ {
"pname": "System.Collections.Immutable", "pname": "System.Collections.Immutable",