diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d16d5f4..2426b26 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: cache: pip - run: pip install build - run: python -m build - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: dist path: dist/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 78c778b..3afb430 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: cache: pip - run: pip install build - run: python -m build - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: python-distribution path: dist/* @@ -42,7 +42,7 @@ jobs: run: pyinstaller --noconfirm ConvertAll.spec - name: Package run: Compress-Archive -Path dist/ConvertAll/* -DestinationPath ConvertAll-windows.zip - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: windows-executable path: ConvertAll-windows.zip