Skip to content

Commit aabb4d0

Browse files
chore(deps): bump the github-actions group with 7 updates
Bumps the github-actions group with 7 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `5` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `3` | `6` | | [CodSpeedHQ/action](https://github.com/codspeedhq/action) | `3.5.0` | `4.0.1` | | [uraimo/run-on-arch-action](https://github.com/uraimo/run-on-arch-action) | `2` | `3` | | [wntrblm/nox](https://github.com/wntrblm/nox) | `2024.03.02` | `2025.05.01` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `5` | Updates `actions/checkout` from 3 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v5) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `astral-sh/setup-uv` from 3 to 6 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v3...v6) Updates `CodSpeedHQ/action` from 3.5.0 to 4.0.1 - [Release notes](https://github.com/codspeedhq/action/releases) - [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md) - [Commits](CodSpeedHQ/action@v3.5.0...v4.0.1) Updates `uraimo/run-on-arch-action` from 2 to 3 - [Release notes](https://github.com/uraimo/run-on-arch-action/releases) - [Commits](uraimo/run-on-arch-action@v2...v3) Updates `wntrblm/nox` from 2024.03.02 to 2025.05.01 - [Release notes](https://github.com/wntrblm/nox/releases) - [Changelog](https://github.com/wntrblm/nox/blob/main/CHANGELOG.md) - [Commits](wntrblm/nox@2024.03.02...2025.05.01) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: astral-sh/setup-uv dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: CodSpeedHQ/action dependency-version: 4.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: uraimo/run-on-arch-action dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: wntrblm/nox dependency-version: 2025.05.01 dependency-type: direct:production dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent ffb7ebc commit aabb4d0

File tree

6 files changed

+39
-39
lines changed

6 files changed

+39
-39
lines changed

.github/workflows/codspeed.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
benchmarks:
1515
runs-on: ubuntu-22.04
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

1919
- name: Set up Python
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: "3.9"
2323

@@ -32,7 +32,7 @@ jobs:
3232
uv sync --dev --group test --verbose
3333
3434
- name: Run benchmarks
35-
uses: CodSpeedHQ/action@v3.5.0
35+
uses: CodSpeedHQ/action@v4.0.1
3636
with:
3737
token: ${{ secrets.CODSPEED_TOKEN }}
3838
run: uv run pytest integration_tests --codspeed

.github/workflows/lint-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
lint:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- name: Install uv
17-
uses: astral-sh/setup-uv@v3
17+
uses: astral-sh/setup-uv@v6
1818

19-
- uses: actions/setup-python@v5
19+
- uses: actions/setup-python@v6
2020
with:
2121
python-version: "3.11"
2222

.github/workflows/preview-deployments.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
matrix:
2222
python-version: ["3.9", "3.10", "3.11", "3.12"]
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- name: Install uv
26-
uses: astral-sh/setup-uv@v3
27-
- uses: actions/setup-python@v5
26+
uses: astral-sh/setup-uv@v6
27+
- uses: actions/setup-python@v6
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
- uses: dtolnay/rust-toolchain@stable
@@ -55,10 +55,10 @@ jobs:
5555
python-version: ["3.9", "3.10", "3.11", "3.12"]
5656
target: [x64, x86]
5757
steps:
58-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@v5
5959
- name: Install uv
60-
uses: astral-sh/setup-uv@v3
61-
- uses: actions/setup-python@v5
60+
uses: astral-sh/setup-uv@v6
61+
- uses: actions/setup-python@v6
6262
with:
6363
python-version: ${{ matrix.python-version }}
6464
architecture: ${{ matrix.target }}
@@ -81,11 +81,11 @@ jobs:
8181
python-version: ["3.9", "3.10", "3.11", "3.12"]
8282
target: [x86_64, i686]
8383
steps:
84-
- uses: actions/checkout@v4
84+
- uses: actions/checkout@v5
8585
- uses: dtolnay/rust-toolchain@stable
8686
- name: Install uv
87-
uses: astral-sh/setup-uv@v3
88-
- uses: actions/setup-python@v5
87+
uses: astral-sh/setup-uv@v6
88+
- uses: actions/setup-python@v6
8989
with:
9090
python-version: ${{ matrix.python-version }}
9191
- name: Build Wheels
@@ -115,7 +115,7 @@ jobs:
115115
]
116116
target: [aarch64, armv7]
117117
steps:
118-
- uses: actions/checkout@v3
118+
- uses: actions/checkout@v5
119119
- name: Build Wheels
120120
uses: PyO3/maturin-action@v1
121121
env:
@@ -124,7 +124,7 @@ jobs:
124124
target: ${{ matrix.target }}
125125
manylinux: auto
126126
args: -i python${{matrix.python.version}} --release --out dist --no-sdist
127-
- uses: uraimo/run-on-arch-action@v2
127+
- uses: uraimo/run-on-arch-action@v3
128128
name: Install build wheel
129129
with:
130130
arch: ${{ matrix.target }}

.github/workflows/python-CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
name: ${{ matrix.os }} tests with python ${{ matrix.python-version }}
1515
runs-on: ${{ matrix.os }}-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Set up Nox
23-
uses: wntrblm/nox@2024.03.02
23+
uses: wntrblm/nox@2025.05.01
2424
with:
2525
python-versions: ${{ matrix.python-version }}
2626
- name: Test with Nox

.github/workflows/release-CI.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
matrix:
2222
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v5
2525
- name: Install uv
26-
uses: astral-sh/setup-uv@v3
27-
- uses: actions/setup-python@v5
26+
uses: astral-sh/setup-uv@v6
27+
- uses: actions/setup-python@v6
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
- uses: dtolnay/rust-toolchain@stable
@@ -59,10 +59,10 @@ jobs:
5959
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
6060
target: [x64, x86]
6161
steps:
62-
- uses: actions/checkout@v3
62+
- uses: actions/checkout@v5
6363
- name: Install uv
64-
uses: astral-sh/setup-uv@v3
65-
- uses: actions/setup-python@v5
64+
uses: astral-sh/setup-uv@v6
65+
- uses: actions/setup-python@v6
6666
with:
6767
python-version: ${{ matrix.python-version }}
6868
architecture: ${{ matrix.target }}
@@ -89,11 +89,11 @@ jobs:
8989
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
9090
target: [x86_64, i686]
9191
steps:
92-
- uses: actions/checkout@v3
92+
- uses: actions/checkout@v5
9393
- uses: dtolnay/rust-toolchain@stable
9494
- name: Install uv
95-
uses: astral-sh/setup-uv@v3
96-
- uses: actions/setup-python@v5
95+
uses: astral-sh/setup-uv@v6
96+
- uses: actions/setup-python@v6
9797
with:
9898
python-version: ${{ matrix.python-version }}
9999
- name: Build Wheels
@@ -127,7 +127,7 @@ jobs:
127127
]
128128
target: [aarch64, armv7]
129129
steps:
130-
- uses: actions/checkout@v3
130+
- uses: actions/checkout@v5
131131
- name: Build Wheels
132132
uses: PyO3/maturin-action@v1
133133
env:
@@ -136,7 +136,7 @@ jobs:
136136
target: ${{ matrix.target }}
137137
manylinux: auto
138138
args: -i python${{matrix.python.version}} --release --out dist
139-
- uses: uraimo/run-on-arch-action@v2
139+
- uses: uraimo/run-on-arch-action@v3
140140
name: Install build wheel
141141
with:
142142
arch: ${{ matrix.target }}
@@ -170,7 +170,7 @@ jobs:
170170
if: always() && needs.macos.result == 'success' && needs.windows.result == 'success' && needs.linux.result == 'success' && (needs.linux-cross.result == 'success' || needs.linux-cross.result == 'skipped')
171171
steps:
172172
- name: Downloading all Artifacts
173-
uses: actions/download-artifact@v4
173+
uses: actions/download-artifact@v5
174174
with:
175175
path: artifacts
176176
pattern: wheels-*
@@ -190,12 +190,12 @@ jobs:
190190
needs: [macos, windows, linux, linux-cross, merge]
191191
if: always() && needs.merge.result == 'success'
192192
steps:
193-
- uses: actions/download-artifact@v4
193+
- uses: actions/download-artifact@v5
194194
with:
195195
name: wheels
196196
- name: Install uv
197-
uses: astral-sh/setup-uv@v3
198-
- uses: actions/setup-python@v5
197+
uses: astral-sh/setup-uv@v6
198+
- uses: actions/setup-python@v6
199199
with:
200200
python-version: 3.x
201201
- name: Publish to PyPi

.github/workflows/rust-CI.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,23 @@ jobs:
99
name: Check
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- uses: dtolnay/rust-toolchain@stable
1414
- run: cargo check
1515

1616
test:
1717
name: Test Suite
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- uses: dtolnay/rust-toolchain@stable
2222
- run: cargo test
2323

2424
fmt:
2525
name: Rustfmt
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- uses: dtolnay/rust-toolchain@stable
3030
with:
3131
components: rustfmt
@@ -35,7 +35,7 @@ jobs:
3535
name: Clippy
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
- uses: dtolnay/rust-toolchain@stable
4040
with:
4141
components: clippy

0 commit comments

Comments
 (0)