Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/download-artifact from 4.1.7 to 4.1.8 #111

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

- name: Download the ebpf-for-windows build nuget package
if: inputs.platform == 'windows-2019' || inputs.platform == 'windows-2022'
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
name: "ebpf-for-windows - NuGet package (none_Release)"
path: ${{github.workspace}}/local_packages
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,21 +63,21 @@ jobs:

- name: Download the eBPF for Windows MSI
if: inputs.platform == 'windows-2019' || inputs.platform == 'windows-2022'
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
name: "ebpf-for-windows - MSI installer (none_Release)"
path: ${{github.workspace}}/local_packages

- name: Download BPF Performance tests - Windows-2019 or Windows-2022
if: inputs.platform == 'windows-2019' || inputs.platform == 'windows-2022'
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
name: "build-${{inputs.Configuration}}-windows-2019-none"
path: ${{github.workspace}}/build/bin

- name: Download BPF Performance tests - Ubuntu-22.04
if: inputs.platform == 'ubuntu-22.04'
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
name: "build-${{inputs.Configuration}}-${{inputs.platform}}-${{inputs.option}}"
path: ${{github.workspace}}/build/bin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/UploadPerfResults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: Download performance result artifacts
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
name: results-Release-${{matrix.platform}}-none
path: results
Expand Down
Loading