From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 07:10:50 +0000 (+0000) Subject: chore(deps): bump the actions group with 2 updates X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbe39955eebb69faccdc0101fb655a2e26baf8a5;p=thirdparty%2Fpsycopg.git chore(deps): bump the actions group with 2 updates Bumps the actions group with 2 updates: [actions/cache](https://github.com/actions/cache) and [actions/upload-artifact](https://github.com/actions/upload-artifact). 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) --- 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 ... Signed-off-by: dependabot[bot] --- diff --git a/.github/workflows/3rd-party-tests.yml b/.github/workflows/3rd-party-tests.yml index 418cef9bd..d40121a1e 100644 --- a/.github/workflows/3rd-party-tests.yml +++ b/.github/workflows/3rd-party-tests.yml @@ -245,7 +245,7 @@ jobs: USE_TZ = False HERE - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ matrix.python-version }}-pip-${{ hashFiles('workdir/django/tests/requirements/py3.txt', 'workdir/django/setup.cfg') }} diff --git a/.github/workflows/build-and-cache-libpq.yml b/.github/workflows/build-and-cache-libpq.yml index 895e3fe68..59a14be00 100644 --- a/.github/workflows/build-and-cache-libpq.yml +++ b/.github/workflows/build-and-cache-libpq.yml @@ -87,7 +87,7 @@ jobs: image: tonistiigi/binfmt:qemu-v8.1.5 - name: Cache libpq build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/libpq.build key: libpq-${{ matrix.platform }}-${{ matrix.arch }}-${{ env.LIBPQ_VERSION }}-${{ env.OPENSSL_VERSION }}${{ env.PQ_FLAGS }} @@ -131,7 +131,7 @@ jobs: uses: actions/checkout@v6 - name: Cache libpq build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/libpq.build key: libpq-macos-${{ env.LIBPQ_VERSION }}-${{ matrix.arch }}-${{ env.OPENSSL_VERSION }}${{ env.PQ_FLAGS }} diff --git a/.github/workflows/packages-bin.yml b/.github/workflows/packages-bin.yml index ff2a9f73f..e929ea71c 100644 --- a/.github/workflows/packages-bin.yml +++ b/.github/workflows/packages-bin.yml @@ -63,7 +63,7 @@ jobs: image: tonistiigi/binfmt:qemu-v8.1.5 - name: Cache libpq build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/libpq.build key: libpq-${{ matrix.platform }}-${{ matrix.arch }}-${{ env.LIBPQ_VERSION }}-${{ env.OPENSSL_VERSION }}${{ env.PQ_FLAGS }} @@ -100,7 +100,7 @@ jobs: PSYCOPG_TEST_WANT_LIBPQ_IMPORT=${{ env.LIBPQ_VERSION }} PYTEST_ADDOPTS="-m 'not slow and not flakey' --color yes" - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: linux-${{matrix.pyver}}-${{matrix.platform}}_${{matrix.arch}} path: ./wheelhouse/*.whl @@ -137,7 +137,7 @@ jobs: uses: actions/checkout@v6 - name: Cache libpq build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/libpq.build key: libpq-macos-${{ env.LIBPQ_VERSION }}-${{ matrix.arch }}-${{ env.OPENSSL_VERSION }}${{ env.PQ_FLAGS }} @@ -167,7 +167,7 @@ jobs: PYTEST_ADDOPTS="-m 'not slow and not flakey and not proxy' --color yes" - name: Upload artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: macos-${{matrix.pyver}}-${{matrix.arch}} path: ./wheelhouse/*.whl @@ -237,7 +237,7 @@ jobs: PSYCOPG_TEST_WANT_LIBPQ_IMPORT=">= 16" PYTEST_ADDOPTS="-m 'not slow and not flakey and not proxy' --color yes" - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: windows-${{matrix.pyver}}-${{matrix.arch}} path: ./wheelhouse/*.whl @@ -253,7 +253,7 @@ jobs: - windows steps: - name: Merge Artifacts - uses: actions/upload-artifact/merge@v5 + uses: actions/upload-artifact/merge@v6 with: name: psycopg-binary-artifact delete-merged: true diff --git a/.github/workflows/packages-pool.yml b/.github/workflows/packages-pool.yml index 2c71ad2ea..6d77cfeff 100644 --- a/.github/workflows/packages-pool.yml +++ b/.github/workflows/packages-pool.yml @@ -42,7 +42,7 @@ jobs: PSYCOPG_TEST_DSN: "host=127.0.0.1 user=postgres" PGPASSWORD: password - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: ${{ matrix.package }}-${{ matrix.format }} path: ./dist/* @@ -67,7 +67,7 @@ jobs: - sdist steps: - name: Merge Artifacts - uses: actions/upload-artifact/merge@v5 + uses: actions/upload-artifact/merge@v6 with: name: psycopg-pool-artifact delete-merged: true diff --git a/.github/workflows/packages-src.yml b/.github/workflows/packages-src.yml index c743b3ac5..6d6eb3cb5 100644 --- a/.github/workflows/packages-src.yml +++ b/.github/workflows/packages-src.yml @@ -50,7 +50,7 @@ jobs: PSYCOPG_TEST_DSN: "host=127.0.0.1 user=postgres" PGPASSWORD: password - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: ${{ matrix.package }}-${{ matrix.format }}-${{ matrix.impl }} path: ./dist/* @@ -74,7 +74,7 @@ jobs: - sdist steps: - name: Merge Artifacts - uses: actions/upload-artifact/merge@v5 + uses: actions/upload-artifact/merge@v6 with: name: psycopg-src-artifact delete-merged: true