From a086d33db66f831b8d71acdd79e79b8a8257545f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 May 2026 22:44:27 +0000 Subject: [PATCH] chore(deps): bump the github-actions group across 1 directory with 7 updates Bumps the github-actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [dorny/test-reporter](https://github.com/dorny/test-reporter) | `1` | `3` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | | [actions/setup-dotnet](https://github.com/actions/setup-dotnet) | `4` | `5` | | [actions/cache](https://github.com/actions/cache) | `5.0.4` | `5.0.5` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2.6.1` | `3.0.0` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `9` | Updates `dorny/test-reporter` from 1 to 3 - [Release notes](https://github.com/dorny/test-reporter/releases) - [Changelog](https://github.com/dorny/test-reporter/blob/main/CHANGELOG.md) - [Commits](https://github.com/dorny/test-reporter/compare/v1...v3) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v8) Updates `actions/setup-dotnet` from 4 to 5 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v4...v5) Updates `actions/cache` from 5.0.4 to 5.0.5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/668228422ae6a00e4ad889ee87cd7109ec5666a7...27d5ce7f107fe9357f9df03efb73ab90386fccae) Updates `softprops/action-gh-release` from 2.6.1 to 3.0.0 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/153bb8e04406b158c6c84fc1615b65b24149a1fe...b4309332981a82ec1c5618f44dd2e27cc8bfbfda) Updates `actions/github-script` from 7 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v9) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-dotnet dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: dorny/test-reporter dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: softprops/action-gh-release dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/dotnet-library-build.yml | 14 +++++++------- .github/workflows/java-library-build.yml | 8 ++++---- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/dotnet-library-build.yml b/.github/workflows/dotnet-library-build.yml index 5485fa9..701097d 100644 --- a/.github/workflows/dotnet-library-build.yml +++ b/.github/workflows/dotnet-library-build.yml @@ -134,7 +134,7 @@ jobs: artifactory-password: ${{ secrets.ARTIFACTORY_PASSWORD }} - name: Test Results - uses: dorny/test-reporter@v1 + uses: dorny/test-reporter@v3 if: always() with: name: Tests (Linux) @@ -150,7 +150,7 @@ jobs: - name: Upload SBOM if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: sbom path: bom.json @@ -179,7 +179,7 @@ jobs: certificate-password: ${{ secrets.CODE_SIGN_PFX_PASS }} - name: Upload Packages - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: nuget-packages path: | @@ -236,7 +236,7 @@ jobs: test-verbosity: ${{ inputs.windows-test-verbosity || 'detailed'}} - name: Test Results - uses: dorny/test-reporter@v1 + uses: dorny/test-reporter@v3 if: always() with: name: Tests (Windows) @@ -255,12 +255,12 @@ jobs: !startsWith(github.ref, 'refs/heads/dependabot/') runs-on: windows-latest steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v8 with: name: nuget-packages path: packages - - uses: actions/setup-dotnet@v4 + - uses: actions/setup-dotnet@v5 with: dotnet-version: ${{ inputs.dotnet-version }} @@ -295,7 +295,7 @@ jobs: submodules: true token: ${{ steps.setup-github-app.outputs.app_token }} - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v8 with: name: nuget-packages path: release-packages diff --git a/.github/workflows/java-library-build.yml b/.github/workflows/java-library-build.yml index 01fe3bd..f0857d7 100644 --- a/.github/workflows/java-library-build.yml +++ b/.github/workflows/java-library-build.yml @@ -99,7 +99,7 @@ jobs: artifactory_password: ${{ secrets.ARTIFACTORY_PASSWORD }} - name: Cache Maven packages - uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 #v5.0.4 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae #v5.0.5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} @@ -178,7 +178,7 @@ jobs: - name: Create GitHub Release if: inputs.is_release == true && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master') - uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe #v2.6.1 + uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda #v3.0.0 env: GITHUB_TOKEN: ${{ steps.app_token.outputs.app_token }} with: @@ -216,7 +216,7 @@ jobs: - name: Trigger component tests if: inputs.component_test_project != '' id: trigger_component_tests - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ steps.app_token.outputs.app_token }} script: | @@ -259,7 +259,7 @@ jobs: - name: Wait for component tests if: inputs.component_test_project != '' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ steps.app_token.outputs.app_token }} script: |