From 04bc0086798aaf62bfe8c83952ded2e0463505ca Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 17 May 2026 08:31:40 +0000 Subject: [PATCH] Bump the actions group with 3 updates Bumps the actions group with 3 updates: [azure/trusted-signing-action](https://github.com/azure/trusted-signing-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `azure/trusted-signing-action` from 1.0.0 to 2.0.0 - [Release notes](https://github.com/azure/trusted-signing-action/releases) - [Commits](https://github.com/azure/trusted-signing-action/compare/v1.0.0...v2.0.0) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) --- updated-dependencies: - dependency-name: azure/trusted-signing-action dependency-version: 2.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-rust.yml | 4 ++-- .github/workflows/release.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-rust.yml b/.github/workflows/build-rust.yml index 460e7c0..f1e92a8 100644 --- a/.github/workflows/build-rust.yml +++ b/.github/workflows/build-rust.yml @@ -115,7 +115,7 @@ jobs: - name: Sign Windows Binary if: startsWith(matrix.os, 'windows-') - uses: azure/trusted-signing-action@v1.0.0 + uses: azure/trusted-signing-action@v2.0.0 with: azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }} azure-client-id: ${{ secrets.AZURE_CLIENT_ID }} @@ -128,7 +128,7 @@ jobs: timestamp-digest: SHA256 - name: Upload Artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: check_nsclient-${{ steps.target.outputs.os_name }}-${{ matrix.arch }} path: target/${{ steps.target.outputs.triple }}/release/check_nsclient${{ startsWith(matrix.os, 'windows-') && '.exe' || '' }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eca7a1e..cc46678 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,22 +20,22 @@ jobs: - uses: actions/checkout@v6 - name: Download windows x64 - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: check_nsclient-windows-x64 path: artifacts/windows-x64 - name: Download windows x86 - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: check_nsclient-windows-x86 path: artifacts/windows-x86 - name: Download linux x64 - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: check_nsclient-linux-x64 path: artifacts/linux-x64 - name: Download linux arm64 - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: check_nsclient-linux-arm64 path: artifacts/linux-arm64