From 8f7738ccee61e3a25c7872f6f0d4c2b8a8bafc2a Mon Sep 17 00:00:00 2001 From: Bart Koelman <104792814+bart-vmware@users.noreply.github.com> Date: Wed, 8 Apr 2026 15:33:51 +0200 Subject: [PATCH 1/3] Update versions of GitHub Actions --- .github/workflows/Steeltoe.All.yml | 4 ++-- .github/workflows/component-shared-workflow.yml | 4 ++-- .github/workflows/package.yml | 14 +++++++------- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/Steeltoe.All.yml b/.github/workflows/Steeltoe.All.yml index 2b399806f2..32b0eb6c15 100644 --- a/.github/workflows/Steeltoe.All.yml +++ b/.github/workflows/Steeltoe.All.yml @@ -99,7 +99,7 @@ jobs: - name: Upload crash/hang dumps (on failure) if: ${{ !cancelled() && (steps.test.outcome == 'failure' || steps.test-memory-dumps.outcome == 'failure') }} - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: FailedTestOutput-${{ matrix.os }} path: | @@ -109,7 +109,7 @@ jobs: - name: Report test results if: ${{ !cancelled() && (steps.test.outcome != 'skipped' || steps.test-memory-dumps.outcome != 'skipped') }} - uses: dorny/test-reporter@v2 + uses: dorny/test-reporter@v3 with: name: ${{ matrix.os }} test results reporter: dotnet-trx diff --git a/.github/workflows/component-shared-workflow.yml b/.github/workflows/component-shared-workflow.yml index f22f44241e..f7c144a622 100644 --- a/.github/workflows/component-shared-workflow.yml +++ b/.github/workflows/component-shared-workflow.yml @@ -91,7 +91,7 @@ jobs: - name: Upload crash/hang dumps (on failure) if: ${{ !cancelled() && (steps.test.outcome == 'failure' || steps.test-memory-dumps.outcome == 'failure') }} - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: FailedTestOutput-${{ inputs.OS }}-latest path: | @@ -101,7 +101,7 @@ jobs: - name: Report test results if: ${{ !cancelled() && (steps.test.outcome != 'skipped' || steps.test-memory-dumps.outcome != 'skipped') }} - uses: dorny/test-reporter@v2 + uses: dorny/test-reporter@v3 with: name: ${{ inputs.OS }}-latest test results reporter: dotnet-trx diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 46b1dbab50..4134cf0610 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -123,7 +123,7 @@ jobs: run: dotnet pack ${{ env.SOLUTION_FILE }} --no-build --configuration Release --output ${{ github.workspace }}/packages /p:VersionSuffix=${{ env.PACKAGE_VERSION_SUFFIX }} - name: Upload unsigned packages - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: if-no-files-found: error name: unsigned-packages @@ -141,7 +141,7 @@ jobs: steps: - name: Download unsigned packages - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: unsigned-packages path: packages @@ -155,7 +155,7 @@ jobs: run: dotnet tool install --global sign --prerelease - name: Azure login - uses: azure/login@v2 + uses: azure/login@v3 with: client-id: ${{ secrets.AZURE_CLIENT_ID }} tenant-id: ${{ secrets.AZURE_TENANT_ID }} @@ -174,7 +174,7 @@ jobs: --description-url 'https://steeltoe.io/' - name: Upload signed packages - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: if-no-files-found: error name: signed-packages @@ -194,14 +194,14 @@ jobs: steps: - name: Azure login - uses: azure/login@v2 + uses: azure/login@v3 with: client-id: ${{ secrets.AZURE_CLIENT_ID }} tenant-id: ${{ secrets.AZURE_TENANT_ID }} subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} - name: Download signed packages - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: signed-packages path: packages @@ -243,7 +243,7 @@ jobs: dotnet-version: 8.0.* - name: Download signed packages - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: signed-packages path: packages From 459cb3181378a4625096f149d9333f66450f9d98 Mon Sep 17 00:00:00 2001 From: Bart Koelman <104792814+bart-vmware@users.noreply.github.com> Date: Thu, 9 Apr 2026 14:04:24 +0200 Subject: [PATCH 2/3] Test: artifact download and package signing --- .github/workflows/package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 4134cf0610..dde466c9c8 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -131,7 +131,7 @@ jobs: sign: name: Sign - if: ${{ github.event_name != 'pull_request' }} + #if: ${{ github.event_name != 'pull_request' }} timeout-minutes: 15 needs: build runs-on: windows-latest From aa580bbf8dba044a2d2cc867f65691a56c3c1a90 Mon Sep 17 00:00:00 2001 From: Bart Koelman <104792814+bart-vmware@users.noreply.github.com> Date: Thu, 9 Apr 2026 14:14:44 +0200 Subject: [PATCH 3/3] Revert "Test: artifact download and package signing" This reverts commit 459cb3181378a4625096f149d9333f66450f9d98. --- .github/workflows/package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index dde466c9c8..4134cf0610 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -131,7 +131,7 @@ jobs: sign: name: Sign - #if: ${{ github.event_name != 'pull_request' }} + if: ${{ github.event_name != 'pull_request' }} timeout-minutes: 15 needs: build runs-on: windows-latest