diff --git a/.github/workflows/build-container.yml b/.github/workflows/build-container.yml index 352a3292..a1c0f43a 100644 --- a/.github/workflows/build-container.yml +++ b/.github/workflows/build-container.yml @@ -46,7 +46,7 @@ jobs: swap-storage: true - name: Download artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ inputs.wheel_artifact_name }} path: docker/${{ inputs.docker_folder }} diff --git a/.github/workflows/collect-tests.yml b/.github/workflows/collect-tests.yml index 47a9a8d7..c1fdfbb7 100644 --- a/.github/workflows/collect-tests.yml +++ b/.github/workflows/collect-tests.yml @@ -45,7 +45,7 @@ jobs: pytest --collect-only -q | grep 'tests/' | jq -R . | jq -s . > test_list.json - name: Upload pytest output as artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: test_list path: test_list.json diff --git a/.github/workflows/make-release.yml b/.github/workflows/make-release.yml index eab35297..4ffc0c68 100644 --- a/.github/workflows/make-release.yml +++ b/.github/workflows/make-release.yml @@ -86,7 +86,7 @@ jobs: run: make release - name: 'Upload wheel artifact' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: jupyterlab_vre path: dist/jupyterlab_vre-0.1.0-py3-none-any.whl diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index 0de32ee8..11f0f8d0 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -71,7 +71,7 @@ jobs: uses: actions/checkout@v4 - name: Download pytest output artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: test_list path: ./