Skip to content

Commit f080710

Browse files
build(deps): Bump the dependencies group across 1 directory with 3 updates
Bumps the dependencies group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) Updates `actions/setup-python` from 6 to 6.2.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6...v6.2.0) Updates `actions/cache` from 5 to 5.0.5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v5.0.5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/setup-python dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 3a40573 commit f080710

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/python-tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,18 @@ jobs:
3636

3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v6
39+
uses: actions/checkout@v7
4040

4141
- name: Set up Python
42-
uses: actions/setup-python@v6
42+
uses: actions/setup-python@v6.2.0
4343
with:
4444
python-version: ${{ env.PYTHON_VERSION }}
4545

4646
- name: Install uv
4747
uses: astral-sh/setup-uv@v7
4848

4949
- name: Restore uv cache
50-
uses: actions/cache@v5
50+
uses: actions/cache@v5.0.5
5151
with:
5252
path: ${{ env.UV_CACHE_DIR }}
5353
key: uv-${{ runner.os }}-python${{ env.PYTHON_VERSION }}-${{ hashFiles('uv.lock') }}
@@ -80,18 +80,18 @@ jobs:
8080

8181
steps:
8282
- name: Checkout repository
83-
uses: actions/checkout@v6
83+
uses: actions/checkout@v7
8484

8585
- name: Set up Python
86-
uses: actions/setup-python@v6
86+
uses: actions/setup-python@v6.2.0
8787
with:
8888
python-version: ${{ matrix.python-version }}
8989

9090
- name: Install uv
9191
uses: astral-sh/setup-uv@v7
9292

9393
- name: Restore uv cache
94-
uses: actions/cache@v5
94+
uses: actions/cache@v5.0.5
9595
with:
9696
path: ${{ env.UV_CACHE_DIR }}
9797
key: uv-${{ runner.os }}-python${{ matrix.python-version }}-${{ hashFiles('uv.lock') }}

0 commit comments

Comments
 (0)