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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
recipes_found=false
fi
echo "recipes_found=$recipes_found" >> $GITHUB_OUTPUT
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: recipe_list
path: recipe_list.txt
Expand All @@ -78,7 +78,7 @@ jobs:
- uses: actions/setup-python@v6
with:
python-version: '3.14'
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: recipe_list
path: ../workflow_artifacts/
Expand All @@ -89,7 +89,7 @@ jobs:
while read -r folder; do
python3 wheel_builder.py "$folder";
done < ../workflow_artifacts/recipe_list.txt
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: wheelhouse
path: wheelhouse/
Expand All @@ -100,7 +100,7 @@ jobs:
if: ${{ github.ref == 'refs/heads/master' && github.event_name == 'push' && github.repository_owner == 'modem7' }}
steps:
- uses: actions/checkout@v6
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: wheelhouse
path: wheels
Expand Down