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