diff --git a/.github/workflows/cts_traffic.yml b/.github/workflows/cts_traffic.yml index 01a33ebb..7dd1a4e8 100644 --- a/.github/workflows/cts_traffic.yml +++ b/.github/workflows/cts_traffic.yml @@ -79,7 +79,7 @@ jobs: Add-MpPreference -ExclusionPath ${{ github.workspace }} - name: Download cts-traffic - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: "cts-traffic Release" path: ${{ github.workspace }}\cts-traffic diff --git a/.github/workflows/custom.yml b/.github/workflows/custom.yml index 287ac386..5f234348 100644 --- a/.github/workflows/custom.yml +++ b/.github/workflows/custom.yml @@ -69,12 +69,12 @@ jobs: with: ref: ${{ inputs.ref || '' }} - name: Download Build Artifacts - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 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@fa0a91b85d4f404e444e00e005971372dc801d16 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 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 diff --git a/.github/workflows/ebpf.yml b/.github/workflows/ebpf.yml index cb97fbd1..272bb349 100644 --- a/.github/workflows/ebpf.yml +++ b/.github/workflows/ebpf.yml @@ -205,7 +205,7 @@ jobs: echo "C:\Program Files\GitHub CLI" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - name: Download ebpf-for-windows - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: "ebpf-for-windows - MSI installer (none_NativeOnlyRelease)" path: ${{ github.workspace }}\bpf_performance @@ -225,7 +225,7 @@ jobs: path: ${{ github.workspace }}\bpf_performance\install.log - name: Download xdp-for-windows - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: "bin_Release_x64" path: ${{ github.workspace }}\xdp @@ -272,7 +272,7 @@ jobs: Expand-Archive -Path build-Release-windows-2022.zip -DestinationPath . - name: Download cts-traffic - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: "cts-traffic Release" path: ${{ github.workspace }}\cts-traffic diff --git a/.github/workflows/ebpf_dynamic_vm.yml b/.github/workflows/ebpf_dynamic_vm.yml index c02a113c..7bc47f43 100644 --- a/.github/workflows/ebpf_dynamic_vm.yml +++ b/.github/workflows/ebpf_dynamic_vm.yml @@ -150,7 +150,7 @@ jobs: Start-Process -FilePath "vc_redist.x64.exe" -ArgumentList "/quiet /qn /norestart" -Wait -NoNewWindow - name: Download ebpf-for-windows - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: "ebpf-for-windows - MSI installer (none_NativeOnlyRelease)" path: ${{ github.workspace }}\bpf_performance @@ -206,7 +206,7 @@ jobs: Expand-Archive -Path build-Release-windows-2022.zip -DestinationPath . - name: Download cts-traffic - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: "cts-traffic Release" path: ${{ github.workspace }}\cts-traffic diff --git a/.github/workflows/main_netperfapi.yml b/.github/workflows/main_netperfapi.yml index 4629c8a6..f912ef3d 100644 --- a/.github/workflows/main_netperfapi.yml +++ b/.github/workflows/main_netperfapi.yml @@ -53,7 +53,7 @@ jobs: steps: - name: Download artifact from build job - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v8 with: name: node-app diff --git a/.github/workflows/msquic_kernel_bvt.yml b/.github/workflows/msquic_kernel_bvt.yml index 005551f2..265d36de 100644 --- a/.github/workflows/msquic_kernel_bvt.yml +++ b/.github/workflows/msquic_kernel_bvt.yml @@ -92,12 +92,12 @@ jobs: ref: ${{ github.event.client_payload.ref || inputs.ref || '' }} repository: microsoft/msquic - name: Download Build Artifacts - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 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@fa0a91b85d4f404e444e00e005971372dc801d16 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 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 diff --git a/.github/workflows/network-traffic-performance-linux.yml b/.github/workflows/network-traffic-performance-linux.yml index d95b8724..082b06ca 100644 --- a/.github/workflows/network-traffic-performance-linux.yml +++ b/.github/workflows/network-traffic-performance-linux.yml @@ -81,7 +81,7 @@ jobs: New-Item -ItemType Directory -Path "$env:GITHUB_WORKSPACE/ETL" | Out-Null - name: Download echo test tool - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: "echo_test" path: ${{ github.workspace }}/echo diff --git a/.github/workflows/network-traffic-performance.yml b/.github/workflows/network-traffic-performance.yml index eef42d1a..980ecd80 100644 --- a/.github/workflows/network-traffic-performance.yml +++ b/.github/workflows/network-traffic-performance.yml @@ -104,7 +104,7 @@ jobs: New-Item -ItemType Directory -Path ${{ github.workspace }}\ETL - name: Download cts-traffic - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: "cts-traffic Release" path: ${{ github.workspace }}\cts-traffic @@ -264,7 +264,7 @@ jobs: New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" -Name "DumpFolder" -Value "$DumpFolder" -PropertyType ExpandString -ErrorAction SilentlyContinue - name: Download echo test tool - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0 with: name: "echo_test" path: ${{ github.workspace }}\echo diff --git a/.github/workflows/quic.yml b/.github/workflows/quic.yml index e5395e57..87acce27 100644 --- a/.github/workflows/quic.yml +++ b/.github/workflows/quic.yml @@ -197,12 +197,12 @@ jobs: if: ${{ matrix.env == 'azure' }} uses: ./netperfrepo/.github/actions/prepare-1es-machine - name: Download Artifacts - uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 with: name: Release-${{env.OS}}-${{ matrix.os == 'windows-2025' && 'windows-2022' || matrix.os }}-${{ matrix.arch }}-${{ matrix.tls }}${{ matrix.iouring }}-Perf path: artifacts - name: Download Kernel Artifacts - uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 if: ${{ matrix.io == 'wsk' }} with: name: Release-winkernel-${{ matrix.os == 'windows-2025' && 'windows-2022' || matrix.os }}-${{ matrix.arch }}-${{ matrix.tls }} @@ -297,13 +297,13 @@ jobs: shell: pwsh run: echo "OS=$('${{runner.os}}'.ToLower())" >> $env:GITHUB_ENV - name: Download Kernel Drivers - uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 if: ${{ matrix.io == 'wsk' }} with: name: Release-winkernel-${{ matrix.os == 'windows-2025' && 'windows-2022' || matrix.os }}-${{ matrix.arch }}-${{ matrix.tls }} path: artifacts - name: Download Artifacts - uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 with: name: Release-${{env.OS}}-${{ matrix.os == 'windows-2025' && 'windows-2022' || matrix.os }}-${{ matrix.arch }}-${{ matrix.tls }}-Perf path: artifacts @@ -383,7 +383,7 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - - uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d + - uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 with: path: artifacts/logs pattern: json-test-results-* @@ -405,7 +405,7 @@ jobs: with: repository: microsoft/netperf ref: sqlite - - uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d + - uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 with: pattern: json-test-results-* - name: Remove deprecated python scripts @@ -445,7 +445,7 @@ jobs: repository: microsoft/netperf ref: deploy - run: 'rm -rf *.json' - - uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d + - uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 with: name: history_pages path: history_pages @@ -454,7 +454,7 @@ jobs: run: | mv history_pages/*.json . rm -rf history_pages - - uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d + - uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 with: pattern: "json-test-results-*" - run: ls diff --git a/.github/workflows/update-react.yml b/.github/workflows/update-react.yml index 6c4bbeb3..241621df 100644 --- a/.github/workflows/update-react.yml +++ b/.github/workflows/update-react.yml @@ -71,7 +71,7 @@ jobs: else echo "404.html file does not exist. Skipping removal." fi - - uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d + - uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 with: name: dist path: ./dist diff --git a/.github/workflows/xdp.yml b/.github/workflows/xdp.yml index f90c7d68..28a58bd4 100644 --- a/.github/workflows/xdp.yml +++ b/.github/workflows/xdp.yml @@ -74,7 +74,7 @@ jobs: ref: ${{ github.event.client_payload.sha || github.event.client_payload.ref || inputs.ref || 'main' }} sparse-checkout: tools - name: Download Artifacts - uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d + uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 with: name: bin_Release_${{ matrix.vec.arch }} # Build always comes from 2022 for now path: artifacts/bin