Skip to content

Commit a477ff9

Browse files
Bump the actions group with 7 updates
Bumps the actions group with 7 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `be19121bfd18b9c1ac415d9571d4f67b9b357886` | `032a4b3bda1b716928481836ac5bfe36e1feaad6` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `5` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5.4.3` | `5.5.1` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.12.4` | `1.13.0` | | [jpetrucciani/ruff-check](https://github.com/jpetrucciani/ruff-check) | `0.12.2` | `0.13.2` | Updates `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](actions/checkout@v4...v5) Updates `docker/metadata-action` from be19121bfd18b9c1ac415d9571d4f67b9b357886 to 032a4b3bda1b716928481836ac5bfe36e1feaad6 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@be19121...032a4b3) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) Updates `codecov/codecov-action` from 5.4.3 to 5.5.1 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@18283e0...5a10915) 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](pypa/gh-action-pypi-publish@76f52bc...ed0c539) Updates `jpetrucciani/ruff-check` from 0.12.2 to 0.13.2 - [Release notes](https://github.com/jpetrucciani/ruff-check/releases) - [Commits](jpetrucciani/ruff-check@0a3ff56...d42f791) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/metadata-action dependency-version: 032a4b3bda1b716928481836ac5bfe36e1feaad6 dependency-type: direct:production dependency-group: actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: 5.5.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: jpetrucciani/ruff-check dependency-version: 0.13.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 106bce7 commit a477ff9

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/build-and-push-docker-images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
-
1717
name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
-
2020
name: Set up QEMU
2121
uses: docker/setup-qemu-action@v3
@@ -38,7 +38,7 @@ jobs:
3838
-
3939
name: Extract metadata (tags, labels) for Docker
4040
id: meta
41-
uses: docker/metadata-action@be19121bfd18b9c1ac415d9571d4f67b9b357886
41+
uses: docker/metadata-action@032a4b3bda1b716928481836ac5bfe36e1feaad6
4242
with:
4343
images: |
4444
ghcr.io/${{ github.repository }}

.github/workflows/build_and_test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
- name: Set up Python
12-
uses: actions/setup-python@v5
12+
uses: actions/setup-python@v6
1313
with:
1414
python-version: 3.13
1515
- name: Install dependencies
@@ -32,14 +32,14 @@ jobs:
3232
python-version: ["3.11", "3.12", "3.13"]
3333

3434
steps:
35-
- uses: actions/checkout@v4
36-
- uses: actions/download-artifact@v4
35+
- uses: actions/checkout@v5
36+
- uses: actions/download-artifact@v5
3737
with:
3838
name: artifact
3939
path: dist
4040

4141
- name: Set up Python ${{ matrix.python-version }}
42-
uses: actions/setup-python@v5
42+
uses: actions/setup-python@v6
4343
with:
4444
python-version: ${{ matrix.python-version }}
4545
- name: Install dependencies
@@ -57,7 +57,7 @@ jobs:
5757
custom-pytest: "PYTHONDEVMODE=1 pytest"
5858
report-title: "Test Report"
5959
- name: Upload Coverage to Codecov
60-
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
60+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
6161

6262
pypi-publish:
6363
name: Upload release to PyPI
@@ -70,9 +70,9 @@ jobs:
7070
permissions:
7171
id-token: write
7272
steps:
73-
- uses: actions/download-artifact@v4
73+
- uses: actions/download-artifact@v5
7474
with:
7575
name: artifact
7676
path: dist
7777
- name: Publish package distributions to PyPI
78-
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
78+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
- name: Initialize CodeQL
3030
uses: github/codeql-action/init@v3

.github/workflows/linting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414

1515
- name: Ruff Check
16-
uses: jpetrucciani/ruff-check@0a3ff56b5c6ad23d2ee9751dfa4e00d2d55b61a8 # 0.12.2
16+
uses: jpetrucciani/ruff-check@d42f791c8f5594f13a5189a878015d0cec7605bd # 0.13.2

0 commit comments

Comments
 (0)