Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ jobs:

- name: Get eBPF for Windows download URL
id: determine-url
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
if ("${{ matrix.version }}" != "main") {
Expand Down Expand Up @@ -304,7 +304,7 @@ jobs:
});

// Extract the location header which contains the actual download URL
const download_url = response.headers.location;
const download_url = response.url;

if (!download_url) {
core.setFailed('Failed to get redirect URL from headers');
Expand Down