Skip to content
Open
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
20 changes: 10 additions & 10 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
tag_name: ${{ steps.rp.outputs.tag_name }}
steps:
- id: rp
uses: hoobio/pipeline-tools/pipeline/github/step/release-please@v1.5.0
uses: hoobio/pipeline-tools/pipeline/github/step/release-please@v2.2.1
with:
app-id: ${{ vars.RELEASE_PLEASE_APP_ID }}
app-private-key: ${{ secrets.RELEASE_PLEASE_APP_PRIVATE_KEY }}
Expand Down Expand Up @@ -92,13 +92,13 @@ jobs:
"APP_VERSION=$ver" | Out-File -Append $env:GITHUB_ENV

- name: Stamp Package.appxmanifest version
uses: hoobio/pipeline-tools/pipeline/github/step/stamp-msix-version@v1.5.0
uses: hoobio/pipeline-tools/pipeline/github/step/stamp-msix-version@v2.2.1
with:
manifest-path: ${{ env.APPXMANIFEST_PATH }}
version: ${{ steps.version.outputs.version }}

- name: Build MSIX
uses: hoobio/pipeline-tools/pipeline/github/step/build-msix-dotnet@v1.5.0
uses: hoobio/pipeline-tools/pipeline/github/step/build-msix-dotnet@v2.2.1
with:
project-path: ${{ env.PROJECT_PATH }}
platform: ${{ matrix.platform }}
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:

- name: Sign MSIX
if: env.HAS_SIGNING_CERT == 'true'
uses: hoobio/pipeline-tools/pipeline/github/step/sign-msix@v1.5.0
uses: hoobio/pipeline-tools/pipeline/github/step/sign-msix@v2.2.1
with:
pfx-base64: ${{ secrets.SIGNING_CERTIFICATE }}
pfx-password: ${{ secrets.SIGNING_CERTIFICATE_PASSWORD }}
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
}

- name: Build MSI
uses: hoobio/pipeline-tools/pipeline/github/step/build-msi-wix@v1.5.0
uses: hoobio/pipeline-tools/pipeline/github/step/build-msi-wix@v2.2.1
with:
wix-source-path: ${{ env.WIX_SOURCE_PATH }}
version: ${{ steps.version.outputs.version }}
Expand All @@ -214,7 +214,7 @@ jobs:

- name: Sign MSI
if: env.HAS_SIGNING_CERT == 'true'
uses: hoobio/pipeline-tools/pipeline/github/step/sign-msi@v1.5.0
uses: hoobio/pipeline-tools/pipeline/github/step/sign-msi@v2.2.1
with:
pfx-base64: ${{ secrets.SIGNING_CERTIFICATE }}
pfx-password: ${{ secrets.SIGNING_CERTIFICATE_PASSWORD }}
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
path: msix

- name: Run WACK
uses: hoobio/pipeline-tools/pipeline/github/step/run-wack@v1.5.0
uses: hoobio/pipeline-tools/pipeline/github/step/run-wack@v2.2.1
with:
msix-path: msix
report-path: wack-report-${{ matrix.platform }}.xml
Expand Down Expand Up @@ -323,7 +323,7 @@ jobs:
Write-Host "Prune: $prune"

- name: Generate CycloneDX SBOM
uses: hoobio/pipeline-tools/pipeline/github/step/cyclonedx-sbom-dotnet@v1.5.0
uses: hoobio/pipeline-tools/pipeline/github/step/cyclonedx-sbom-dotnet@v2.2.1
with:
solution-path: ${{ env.SOLUTION_PATH }}
output-path: ${{ env.BOM_FILE }}
Expand All @@ -337,7 +337,7 @@ jobs:

- name: Upload SBOM to Dependency-Track
if: env.DT_HOST != '' && env.DT_API_KEY != ''
uses: hoobio/pipeline-tools/pipeline/github/job/upload-sbom-to-dependency-track@v1.5.0
uses: hoobio/pipeline-tools/pipeline/github/job/upload-sbom-to-dependency-track@v2.2.1
with:
bom-path: ${{ env.BOM_FILE }}
upload-artifact: 'false'
Expand Down Expand Up @@ -439,7 +439,7 @@ jobs:
gh release upload "$TAG" "${RELEASE_FILES[@]}" --clobber --repo "${{ github.repository }}"

- name: Publish draft release
uses: hoobio/pipeline-tools/pipeline/github/step/publish-github-release@v1.5.0
uses: hoobio/pipeline-tools/pipeline/github/step/publish-github-release@v2.2.1
with:
tag: ${{ needs.release-please.outputs.tag_name }}
github-token: ${{ github.token }}
Loading