Skip to content
Open
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/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ jobs:
run: yarn insert-cli-metadata && yarn build-bundles

- name: Upload Bundles
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: apify-cli-bundles-${{ matrix.label }}
path: bundles/**
4 changes: 2 additions & 2 deletions .github/workflows/pre_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ jobs:
run: yarn insert-cli-metadata && yarn build-bundles

- name: Upload bundles
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: apify-cli-bundles-${{ matrix.label }}
path: bundles/**
Expand All @@ -195,7 +195,7 @@ jobs:
steps:
# This step also deals with unzipping the archive from GitHub, so we get a big folder with all the bundles!
- name: Download bundles
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
pattern: apify-cli-bundles-*
merge-multiple: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ jobs:
run: yarn insert-cli-metadata && yarn build-bundles

- name: Upload bundles
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: apify-cli-bundles-${{ matrix.label }}
path: bundles/**
Expand All @@ -222,7 +222,7 @@ jobs:
steps:
# This step also deals with unzipping the archive from GitHub, so we get a big folder with all the bundles!
- name: Download bundles
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
pattern: apify-cli-bundles-*
merge-multiple: true
Expand Down
Loading