Skip to content

Commit

Permalink
Buld pipeline action version bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
cb-martinsmith committed Aug 21, 2024
1 parent 36af300 commit 7913d8b
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ jobs:

- name: Code Coverage Report
uses: irongut/[email protected]
if: success() || failure()
with:
filename: "**/coverage.cobertura.xml"
badge: true
Expand All @@ -138,13 +139,9 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
comment-title: 'Unit Test Results'
results-path: "**/*.trx"

- uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
with:
name: test-results
path: "**/*.trx"
reporter: dotnet-trx
coverage-type: cobertura
coverage-path: "**/coverage.cobertura.xml"
coverage-threshold: ${{ env.COVERAGE_WARNING_THRESHOLD }}

- name: Pull Request - Add Coverage Comment
uses: marocchino/sticky-pull-request-comment@v2
Expand Down Expand Up @@ -186,9 +183,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- uses: actions/download-artifact@v4
with:
name: nuget_output
path: nuget

- name: Build Changelog
id: build_changelog
uses: mikepenz/release-changelog-builder-action@v3.4.0
uses: mikepenz/release-changelog-builder-action@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -201,7 +203,7 @@ jobs:
artifacts: '**/*.nupkg'

- name: Tag git
uses: pkgdeps/git-tag-action@v2.0.5
uses: pkgdeps/git-tag-action@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
github_repo: ${{ github.repository }}
Expand All @@ -224,7 +226,7 @@ jobs:

steps:
- name: Install NuGet
uses: NuGet/setup-nuget@v1.1.1
uses: NuGet/setup-nuget@v2
with:
nuget-api-key: ${{ secrets.NUGET_API_KEY }}
nuget-version: ${{ env.NUGET_VERSION }}
Expand Down

0 comments on commit 7913d8b

Please sign in to comment.