From bde32e43a81cb339d3eeef13398fcf413c612d8d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 12:24:39 +0000 Subject: [PATCH] chore(deps): bump the gha-updates group with 3 updates Bumps the gha-updates group with 3 updates: [actions/github-script](https://github.com/actions/github-script), [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/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v8) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) Updates `pypa/gh-action-pypi-publish` from 1.12.4 to 1.13.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.12.4...v1.13.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-updates - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-updates - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gha-updates ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-benchmark.yml | 6 +++--- .github/workflows/release-pypi.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-benchmark.yml b/.github/workflows/ci-benchmark.yml index d1091753b..cc223f2dd 100644 --- a/.github/workflows/ci-benchmark.yml +++ b/.github/workflows/ci-benchmark.yml @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v5 - name: Extract make args id: extract - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const fullComment = context.payload.comment.body; @@ -36,7 +36,7 @@ jobs: - name: Reply to PR comment and save ID id: comment - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const fs = require('fs'); @@ -84,7 +84,7 @@ jobs: LIGHTNING_API_KEY: ${{ secrets.LIGHTNING_API_KEY }} - name: Update the same comment - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: COMMENT_ID: ${{ steps.comment.outputs.comment_id }} USERNAME: ${{ steps.comment.outputs.username }} diff --git a/.github/workflows/release-pypi.yml b/.github/workflows/release-pypi.yml index 03e954fc8..0aee8e910 100644 --- a/.github/workflows/release-pypi.yml +++ b/.github/workflows/release-pypi.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v5 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: "3.10" @@ -45,7 +45,7 @@ jobs: - name: Publish distribution 📦 to PyPI if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release' - uses: pypa/gh-action-pypi-publish@v1.12.4 + uses: pypa/gh-action-pypi-publish@v1.13.0 with: user: __token__ password: ${{ secrets.pypi_password }}