Skip to content

Commit 14f4f2b

Browse files
dependabot[bot]carlio
authored andcommitted
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 [actions/cache](https://github.com/actions/cache). Updates `actions/setup-python` from 6.2.0 to 6.3.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6.2.0...v6.3.0) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: 6.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 092b114 commit 14f4f2b

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/pre-commit.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v7
14-
- uses: actions/setup-python@v6.2.0
14+
- uses: actions/setup-python@v6.3.0
1515
- run: pip install poetry
1616
- run: poetry install --all-extras --all-groups
1717

18-
- uses: actions/cache@v5
18+
- uses: actions/cache@v6
1919
with:
2020
path: ~/.cache/pre-commit
2121
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v7
1818
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
1919
id: python
20-
uses: actions/setup-python@v6.2.0
20+
uses: actions/setup-python@v6.3.0
2121
with:
2222
python-version: ${{ env.DEFAULT_PYTHON }}
2323
- name: Install requirements

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
python-version: ["3.10", "3.11", "3.12", "3.13"]
1616
steps:
1717
- uses: actions/checkout@v7
18-
- uses: actions/setup-python@v6.2.0
18+
- uses: actions/setup-python@v6.3.0
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- run: pip install poetry

0 commit comments

Comments
 (0)