From 61e33124b98afa5cf4845a044abbe8182bec75f4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 05:23:39 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Bump=20the=20actions=20group=20w?= =?UTF-8?q?ith=204=20updates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the actions group with 4 updates: [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). 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 `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) Updates `astral-sh/setup-uv` from 7.1.5 to 7.1.6 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/v7.1.5...v7.1.6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: 7.1.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/big_endian.yml | 2 +- .github/workflows/build_wheels.yml | 10 +++++----- .github/workflows/typecheck.yml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/big_endian.yml b/.github/workflows/big_endian.yml index a54c9938..0ef22247 100644 --- a/.github/workflows/big_endian.yml +++ b/.github/workflows/big_endian.yml @@ -66,7 +66,7 @@ jobs: sudo apt install -y ninja-build gcc-${TOOLCHAIN_NAME} g++-${TOOLCHAIN_NAME} gfortran-${TOOLCHAIN_NAME} - name: Cache docker container - uses: actions/cache@v4 + uses: actions/cache@v5 id: container-cache with: path: ~/docker_${{ matrix.BUILD_PROP[1] }} diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index c3908999..a01cf81a 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -61,7 +61,7 @@ jobs: python -m cibuildwheel --output-dir wheelhouse working-directory: ./quaddtype - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: path: ./quaddtype/wheelhouse/*.whl name: wheels-linux @@ -125,7 +125,7 @@ jobs: python -m cibuildwheel --output-dir wheelhouse working-directory: ./quaddtype - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: path: ./quaddtype/wheelhouse/*.whl name: wheels-${{ matrix.os }} @@ -185,7 +185,7 @@ jobs: if (-not (Test-Path wheelhouse/*.whl)) { throw "Wheel was not created" } working-directory: ./quaddtype - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: path: ./quaddtype/wheelhouse/*.whl name: wheels-windows-${{ matrix.architecture }} @@ -222,7 +222,7 @@ jobs: working-directory: ./quaddtype - name: Upload SDist artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: sdist path: ./quaddtype/dist/*.tar.gz @@ -248,7 +248,7 @@ jobs: steps: - name: Download all workflow run artifacts - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: pattern: "*" path: dist diff --git a/.github/workflows/typecheck.yml b/.github/workflows/typecheck.yml index c2dfd94f..f38fc390 100644 --- a/.github/workflows/typecheck.yml +++ b/.github/workflows/typecheck.yml @@ -22,7 +22,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: astral-sh/setup-uv@v7.1.5 + - uses: astral-sh/setup-uv@v7.1.6 with: activate-environment: true python-version: "3.11"