Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: Build

on:
workflow_dispatch:
Expand All @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # needed for nbgv

Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
**/TestResults/**/*.trx

- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v7
if: always()
with:
# MTP writes coverage relative to each test project; search recursively
Expand All @@ -87,7 +87,7 @@ jobs:
run: dotnet pack Trellis.Microservices.slnx --no-build --verbosity normal -c Release -o artifacts/

- name: Upload artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: ${{ success() && !github.base_ref }}
with:
name: artifact
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "CodeQL"
name: "CodeQL"

on:
workflow_dispatch:
Expand Down Expand Up @@ -32,7 +32,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # needed for nbgv

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-alpha.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish Trellis.Microservices Alpha
name: Publish Trellis.Microservices Alpha

# Publishes alpha NuGet packages to GitHub Packages on manual dispatch.
# For stable nuget.org releases, use the publish.yml workflow instead.
Expand All @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # needed for nbgv

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish NuGet Package
name: Publish NuGet Package

# Publishes stable NuGet packages to nuget.org on manual dispatch with an
# explicit dry-run option. Requires the NUGET_API_KEY repository secret.
Expand All @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # needed for nbgv

Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
ls -lh nupkgs/*.nupkg

- name: Upload SBOMs
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: sbom-spdx
path: sbom/_manifest/**
Expand Down