From 1915eb6df53cf51d17891412ea4c236d6e6e9b1b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 22:29:33 +0000 Subject: [PATCH] Update GitHub Artifact Actions --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 97d5289..7cd1af2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -57,7 +57,7 @@ jobs: recipes_found=false fi echo "recipes_found=$recipes_found" >> $GITHUB_OUTPUT - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: recipe_list path: recipe_list.txt @@ -78,7 +78,7 @@ jobs: - uses: actions/setup-python@v6 with: python-version: '3.14' - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: name: recipe_list path: ../workflow_artifacts/ @@ -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@v5 + - uses: actions/upload-artifact@v6 with: name: wheelhouse path: wheelhouse/ @@ -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@v6 + - uses: actions/download-artifact@v7 with: name: wheelhouse path: wheels