From c395cad8bd303da1accf73fde57766c0c537e504 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jan 2024 01:14:29 +0000 Subject: [PATCH] Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/docs.yml | 2 +- .github/workflows/java.yml | 2 +- .github/workflows/python-wheel.yml | 2 +- .github/workflows/r.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 12d2351da5..9dd66154ce 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -56,7 +56,7 @@ jobs: - run: mike deploy --update-aliases current-snapshot - run: mkdir staging - run: cp -r site/* staging/ - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: generated-docs path: staging diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml index 274c36abf5..6d8efb2361 100644 --- a/.github/workflows/java.yml +++ b/.github/workflows/java.yml @@ -104,7 +104,7 @@ jobs: - run: cp spark-shaded/target/sedona-*.jar staging - run: | [ -d "flink-shaded/target/" ] && cp flink-shaded/target/sedona-*.jar staging 2>/dev/null || true - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: generated-jars ${{ matrix.spark }} ${{ matrix.scala }} ${{ matrix.jdk }} path: staging diff --git a/.github/workflows/python-wheel.yml b/.github/workflows/python-wheel.yml index 5a8cc295b2..ef3edaa77c 100644 --- a/.github/workflows/python-wheel.yml +++ b/.github/workflows/python-wheel.yml @@ -47,6 +47,6 @@ jobs: CIBW_ARCHS_MACOS: 'x86_64 arm64' with: package-dir: python - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: path: ./wheelhouse/*.whl diff --git a/.github/workflows/r.yml b/.github/workflows/r.yml index efc63ffb20..7cf8ae4e67 100644 --- a/.github/workflows/r.yml +++ b/.github/workflows/r.yml @@ -124,7 +124,7 @@ jobs: cd ./R/tests NOT_CRAN='true' Rscript testthat.R shell: bash - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: failure() with: name: Worker logs