From 18f93b91066018f960de37162edc9f0340c42570 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Jan 2026 14:50:37 +0000 Subject: [PATCH] build(deps): bump the github-dependencies group across 1 directory with 3 updates Bumps the github-dependencies group with 3 updates in the / directory: [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel). Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) Updates `pypa/cibuildwheel` from 3.3.0 to 3.3.1 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v3.3.0...v3.3.1) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-dependencies - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-dependencies - dependency-name: pypa/cibuildwheel dependency-version: 3.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/docker-build.yml | 2 +- .github/workflows/docs.yml | 8 ++++---- .github/workflows/example.yml | 4 ++-- .github/workflows/java.yml | 4 ++-- .github/workflows/pre-commit.yml | 2 +- .github/workflows/python-wheel.yml | 4 ++-- .github/workflows/python.yml | 2 +- .github/workflows/r.yml | 2 +- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 13c44ea7fd..ae4fdfca14 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -65,7 +65,7 @@ jobs: distribution: 'zulu' java-version: 17 - name: Cache Maven packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 9551661b17..4e5a53cbef 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -117,25 +117,25 @@ jobs: fi - run: mkdir staging - run: cp -r site/* staging/ - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: generated-docs path: staging - name: Cache Python packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} restore-keys: | ${{ runner.os }}-pip- - name: Cache Maven packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 - name: Cache Node modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: docs-overrides/node_modules key: ${{ runner.os }}-node-${{ hashFiles('docs-overrides/package-lock.json') }} diff --git a/.github/workflows/example.yml b/.github/workflows/example.yml index 0756f87ba0..f98f5e4858 100644 --- a/.github/workflows/example.yml +++ b/.github/workflows/example.yml @@ -72,14 +72,14 @@ jobs: - run: sudo apt-get update - run: sudo apt-get install sbt - name: Cache SBT - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.ivy2/cache ~/.sbt key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt') }} - name: Cache Maven packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml index c3233c8791..bf835f8e6f 100644 --- a/.github/workflows/java.yml +++ b/.github/workflows/java.yml @@ -94,7 +94,7 @@ jobs: with: python-version: '3.10' - name: Cache Maven packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} @@ -116,7 +116,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@v5 + - uses: actions/upload-artifact@v6 with: name: generated-jars_spark-${{ matrix.spark }}_scala-${{ matrix.scala }}_jdk-${{ matrix.jdk }} path: staging diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index b06fc3e4da..517db5e21c 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -43,7 +43,7 @@ jobs: pip install pre-commit - name: set PY run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.cache/pre-commit key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }} diff --git a/.github/workflows/python-wheel.yml b/.github/workflows/python-wheel.yml index e1dc08ad35..614db3d915 100644 --- a/.github/workflows/python-wheel.yml +++ b/.github/workflows/python-wheel.yml @@ -63,7 +63,7 @@ jobs: image: tonistiigi/binfmt:qemu-v8.1.5 platforms: all - name: Build wheels - uses: pypa/cibuildwheel@v3.3.0 + uses: pypa/cibuildwheel@v3.3.1 env: CIBW_SKIP: 'pp* *musl*' CIBW_ARCHS_LINUX: 'x86_64 aarch64' @@ -71,7 +71,7 @@ jobs: CIBW_ARCHS_MACOS: 'x86_64 arm64' with: package-dir: python - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} path: ./wheelhouse/*.whl diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 5c611c97e5..b7e20423cf 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -123,7 +123,7 @@ jobs: - name: Install uv uses: astral-sh/setup-uv@v7 - name: Cache Maven packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/r.yml b/.github/workflows/r.yml index f9a4c20a07..5177baf2d5 100644 --- a/.github/workflows/r.yml +++ b/.github/workflows/r.yml @@ -157,7 +157,7 @@ jobs: NOT_CRAN='true' Rscript testthat.R shell: bash timeout-minutes: 30 - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 if: failure() with: name: Worker logs