diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69290b5..b1f3306 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -114,7 +114,7 @@ jobs: - name: Build and archive tests run: cargo nextest archive --workspace --all-features --lib --bins --tests --archive-file nextest-archive.tar.zst - name: Upload test archive - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: nextest-archive-${{ matrix.os }} path: nextest-archive.tar.zst @@ -148,7 +148,7 @@ jobs: - name: Build binary run: cargo build --bin mcpls - name: Upload binary - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: mcpls-binary-${{ matrix.os }} path: target/debug/mcpls${{ matrix.os == 'windows-latest' && '.exe' || '' }}