From 9c88ce5d1a81e42668523d55c12a990f29ae76a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 15:54:31 +0000 Subject: [PATCH] Bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/setup-python](https://github.com/actions/setup-python) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6...v7) Updates `pypa/gh-action-pypi-publish` from 1.14.0 to 1.14.1 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.14.0...v1.14.1) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.14.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build_n_deploy.yml | 4 ++-- .github/workflows/pip-audit.yml | 4 ++-- .github/workflows/pre-commit.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build_n_deploy.yml b/.github/workflows/build_n_deploy.yml index 0d0680b..c0b9163 100644 --- a/.github/workflows/build_n_deploy.yml +++ b/.github/workflows/build_n_deploy.yml @@ -11,7 +11,7 @@ jobs: - name: Checkout repo uses: actions/checkout@v7 - name: Setup Python environment - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: '3.x' - name: Install development dependencies @@ -21,7 +21,7 @@ jobs: - name: Build packages to be uploaded run: python -m build - name: pypi-publish - uses: pypa/gh-action-pypi-publish@v1.14.0 + uses: pypa/gh-action-pypi-publish@v1.14.1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} diff --git a/.github/workflows/pip-audit.yml b/.github/workflows/pip-audit.yml index 81943a9..ef51584 100644 --- a/.github/workflows/pip-audit.yml +++ b/.github/workflows/pip-audit.yml @@ -14,7 +14,7 @@ jobs: name: pip-audit python ${{ matrix.python-version }} steps: - uses: actions/checkout@v7 - - uses: actions/setup-python@v6 + - uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} cache: 'pip' @@ -85,7 +85,7 @@ jobs: name: pip-audit python ${{ matrix.python-version }} steps: - uses: actions/checkout@v7 - - uses: actions/setup-python@v6 + - uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} cache: 'pip' diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 8545578..9dc18b7 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@v7 with: fetch-depth: 100 - - uses: actions/setup-python@v6 + - uses: actions/setup-python@v7 id: cachepy with: python-version: ${{ matrix.python-version }} @@ -103,7 +103,7 @@ jobs: - uses: actions/checkout@v7 with: fetch-depth: 100 - - uses: actions/setup-python@v6 + - uses: actions/setup-python@v7 id: cachepy with: python-version: ${{ matrix.python-version }}