diff --git a/.github/workflows/build-reuse-darwin-framework.yml b/.github/workflows/build-reuse-darwin-framework.yml index 55c1c33a7..355ee8931 100644 --- a/.github/workflows/build-reuse-darwin-framework.yml +++ b/.github/workflows/build-reuse-darwin-framework.yml @@ -58,12 +58,12 @@ jobs: repository: microsoft/msquic ref: ${{ inputs.ref }} - name: Download Build Artifacts (x64) - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: name: ${{ inputs.config }}-macos-macos-12-x64-${{ inputs.tls }}${{ inputs.static }} path: artifacts - name: Download Build Artifacts (arm64) - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: name: ${{ inputs.config }}-macos-macos-12-arm64-${{ inputs.tls }}${{ inputs.static }} path: artifacts @@ -95,7 +95,7 @@ jobs: repository: microsoft/msquic ref: ${{ inputs.ref }} - name: Download Build Artifacts (x64) - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: name: ${{ inputs.config }}-${{ matrix.vec.plat }}-macos-12-${{ matrix.vec.arch }}-${{ inputs.tls }}${{ inputs.static }} path: artifacts @@ -119,17 +119,17 @@ jobs: repository: microsoft/msquic ref: ${{ inputs.ref }} - name: Download Build Artifacts (iOS x64) - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: name: Framework-${{ inputs.config }}-ios-macos-12-x64-openssl path: artifacts - name: Download Build Artifacts (iOS arm64) - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: name: Framework-${{ inputs.config }}-ios-macos-12-arm64-openssl path: artifacts - name: Download Build Artifacts (MacOS Universal) - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: name: Framework-${{ inputs.config }}-macos-macos-12-universal-openssl path: artifacts diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml index 7f5e0ca17..f1842ea21 100644 --- a/.github/workflows/code-coverage.yml +++ b/.github/workflows/code-coverage.yml @@ -56,7 +56,7 @@ jobs: with: fetch-depth: 0 - name: Download Build Artifacts - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: name: ${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.sanitize }}${{ matrix.vec.build }} path: artifacts @@ -106,7 +106,7 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: fetch-depth: 0 - - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: name: ${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.sanitize }}${{ matrix.vec.build }} path: artifacts @@ -152,7 +152,7 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: fetch-depth: 0 - - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: name: ${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.sanitize }}${{ matrix.vec.build }} path: artifacts @@ -193,17 +193,17 @@ jobs: shell: pwsh run: | New-Item -ItemType Directory -Force -Path artifacts\coverage\windows\x64_Debug_schannel - - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 name: Download BVT Coverage Results with: name: BVT-Debug-windows-windows-2022-x64-schannel path: artifacts\coverage\windows\x64_Debug_schannel - - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 name: Download SpinQuic Coverage Results with: name: Spin-Debug-windows-windows-2022-x64-schannel path: artifacts\coverage\windows\x64_Debug_schannel - - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 name: Download RecvFuzz Coverage Results with: name: RecvFuzz-Debug-windows-windows-2022-x64-schannel @@ -228,7 +228,7 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 name: Download Merged Coverage Report with: name: merged diff --git a/.github/workflows/dotnet-test.yml b/.github/workflows/dotnet-test.yml index a7cc5c9b9..5deafa833 100644 --- a/.github/workflows/dotnet-test.yml +++ b/.github/workflows/dotnet-test.yml @@ -83,7 +83,7 @@ jobs: shell: pwsh run: scripts/prepare-machine.ps1 -ForTest - name: Download Build Artifacts - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: name: Debug-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }} path: artifacts diff --git a/.github/workflows/package-linux.yml b/.github/workflows/package-linux.yml index 2ac96b0af..cb8c9e22a 100644 --- a/.github/workflows/package-linux.yml +++ b/.github/workflows/package-linux.yml @@ -61,12 +61,12 @@ jobs: shell: pwsh run: scripts/prepare-machine.ps1 -ForTest - name: Download Package - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: name: ${{ matrix.vec.config }}-linux-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}-UseSystemOpenSSLCrypto path: artifacts - name: Download Build Artifacts - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: name: Package-${{ matrix.vec.config }}-linux-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}-UseSystemOpenSSLCrypto path: artifacts diff --git a/.github/workflows/package-reuse-linux.yml b/.github/workflows/package-reuse-linux.yml index 95a513fbe..4fedf9ccb 100644 --- a/.github/workflows/package-reuse-linux.yml +++ b/.github/workflows/package-reuse-linux.yml @@ -80,7 +80,7 @@ jobs: shell: pwsh run: scripts/prepare-machine.ps1 -ForBuild - name: Download Build Artifacts - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: name: ${{ inputs.config }}-linux-${{ inputs.os }}-${{ inputs.arch }}-${{ inputs.tls }}-UseSystemOpenSSLCrypto${{ inputs.sanitize }}${{ inputs.build }} path: artifacts diff --git a/.github/workflows/stress.yml b/.github/workflows/stress.yml index ed99538c9..24a8cb846 100644 --- a/.github/workflows/stress.yml +++ b/.github/workflows/stress.yml @@ -99,12 +99,12 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 if: matrix.vec.plat == 'windows' with: name: ${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os == 'WinServerPrerelease' && 'windows-2022' || matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.sanitize }}${{ matrix.vec.build }} path: artifacts - - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 if: matrix.vec.plat == 'linux' || matrix.vec.plat == 'macos' with: name: ${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.sanitize }}${{ matrix.vec.build }} @@ -159,12 +159,12 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 if: matrix.vec.plat == 'windows' with: name: ${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os == 'WinServerPrerelease' && 'windows-2022' || matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.sanitize }}${{ matrix.vec.build }} path: artifacts - - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 if: matrix.vec.plat == 'linux' || matrix.vec.plat == 'macos' with: name: ${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.sanitize }}${{ matrix.vec.build }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7b5e3df1f..71e48a36b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -116,13 +116,13 @@ jobs: - name: Checkout repository uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Download Build Artifacts - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 if: matrix.vec.plat == 'windows' with: # note we always use binaries built on windows-2022. name: ${{ matrix.vec.config }}-${{ matrix.vec.plat }}-windows-2022-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.sanitize }}${{ matrix.vec.build }} path: artifacts - name: Download Build Artifacts - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 if: matrix.vec.plat == 'linux' with: name: ${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.systemcrypto }}${{ matrix.vec.sanitize }}${{ matrix.vec.build }} @@ -176,12 +176,12 @@ jobs: - name: Checkout repository uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Download Build Artifacts - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: # note we always use binaries built on windows-2022. name: ${{ matrix.vec.config }}-${{ matrix.vec.plat }}-windows-2022-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.build }} path: artifacts - name: Download Build Artifacts for Testing From WinUser - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: # note we always use binaries built on windows-2022. name: ${{ matrix.vec.config }}-windows-windows-2022-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.build }} path: artifacts @@ -224,7 +224,7 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: fetch-depth: 0 - - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: name: ${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.sanitize }}${{ matrix.vec.build }} path: artifacts diff --git a/.github/workflows/wan-perf.yml b/.github/workflows/wan-perf.yml index 39adf2bff..30ec33e71 100644 --- a/.github/workflows/wan-perf.yml +++ b/.github/workflows/wan-perf.yml @@ -87,7 +87,7 @@ jobs: - name: Prepare Machine shell: pwsh run: scripts/prepare-machine.ps1 -ForTest -InstallDuoNic - - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: name: bin path: artifacts/bin @@ -119,7 +119,7 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: fetch-depth: 0 - - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 + - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 with: name: data path: artifacts/PerfDataResults/windows/x64_Release_schannel/WAN