Skip to content
Merged
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
12 changes: 12 additions & 0 deletions .github/workflows/codequality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,15 @@ jobs:
src-folder: src
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

dependency-review:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
steps:
Comment thread
frasermolyneux marked this conversation as resolved.
- name: Checkout repository
uses: actions/checkout@v6
- name: Dependency Review
uses: actions/dependency-review-action@v4
2 changes: 1 addition & 1 deletion .github/workflows/release-publish-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: Publish to NuGet.org
if: env.HAS_RELEASE_TAG == 'true'
uses: frasermolyneux/actions/publish-nuget-packages@publish-nuget-packages/v1.1
uses: frasermolyneux/actions/publish-nuget-packages@publish-nuget-packages/v1.2
Comment thread
frasermolyneux marked this conversation as resolved.
with:
artifact-name: nuget-packages
artifact-run-id: ${{ github.event.workflow_run.id }}
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
"version": "2.2",
"version": "2.3",
Comment thread
frasermolyneux marked this conversation as resolved.
"gitTagVersionPrefix": "v",
"publicReleaseRefSpec": [
"^refs/heads/main$",
Expand Down
Loading