From 019ae72c5b86dd6747d3ba91b595a3202110d70e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 15:39:11 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/push.yaml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test_python.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index 8a3aaf3c..3b2d49a2 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -11,7 +11,7 @@ jobs: name: yarn build and deploy runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: node-version: 22 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ec872e06..bb7977fe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ jobs: # IMPORTANT: this permission is mandatory for trusted publishing id-token: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: pipx run uv tool run --with build[uv] --from build python -m build --installer uv -o python_dist - name: Publish a Python distribution to PyPI if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') diff --git a/.github/workflows/test_python.yml b/.github/workflows/test_python.yml index f536ca3d..7b7c119e 100644 --- a/.github/workflows/test_python.yml +++ b/.github/workflows/test_python.yml @@ -7,7 +7,7 @@ jobs: name: Test with tox runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-python@v5 with: python-version: '3.11'