Skip to content

Commit 169e8b7

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` | `6` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `3` | `7` | | [CodSpeedHQ/action](https://github.com/codspeedhq/action) | `3.5.0` | `4.11.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` | `2026.02.09` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | Updates `actions/checkout` from 3 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v6) Updates `astral-sh/setup-uv` from 3 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v3...v7) Updates `CodSpeedHQ/action` from 3.5.0 to 4.11.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.11.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 2026.02.09 - [Release notes](https://github.com/wntrblm/nox/releases) - [Changelog](https://github.com/wntrblm/nox/blob/main/CHANGELOG.md) - [Commits](wntrblm/nox@2024.03.02...2026.02.09) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v8) --- updated-dependencies: - dependency-name: actions/checkout 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: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: CodSpeedHQ/action dependency-version: 4.11.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: 2026.02.09 dependency-type: direct:production dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a54ff96 commit 169e8b7

6 files changed

Lines changed: 35 additions & 35 deletions

File tree

.github/workflows/codspeed.yml

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

1919
- name: Set up Python
2020
uses: actions/setup-python@v6
2121
with:
2222
python-version: "3.10"
2323

2424
- name: Install uv
25-
uses: astral-sh/setup-uv@v6
25+
uses: astral-sh/setup-uv@v7
2626
with:
2727
version: "0.7.5"
2828

@@ -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.12.1
3636
with:
3737
token: ${{ secrets.CODSPEED_TOKEN }}
3838
run: uv run pytest integration_tests --codspeed

.github/workflows/lint-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
lint:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
- name: Install uv
24-
uses: astral-sh/setup-uv@v3
24+
uses: astral-sh/setup-uv@v7
2525

2626
- uses: actions/setup-python@v6
2727
with:

.github/workflows/preview-deployments.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
matrix:
2222
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525
- name: Install uv
26-
uses: astral-sh/setup-uv@v3
26+
uses: astral-sh/setup-uv@v7
2727
- uses: actions/setup-python@v6
2828
with:
2929
python-version: ${{ matrix.python-version }}
@@ -52,9 +52,9 @@ jobs:
5252
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
5353
target: [x64, x86]
5454
steps:
55-
- uses: actions/checkout@v4
55+
- uses: actions/checkout@v6
5656
- name: Install uv
57-
uses: astral-sh/setup-uv@v3
57+
uses: astral-sh/setup-uv@v7
5858
- uses: actions/setup-python@v6
5959
with:
6060
python-version: ${{ matrix.python-version }}
@@ -78,10 +78,10 @@ jobs:
7878
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
7979
target: [x86_64, i686]
8080
steps:
81-
- uses: actions/checkout@v4
81+
- uses: actions/checkout@v6
8282
- uses: dtolnay/rust-toolchain@stable
8383
- name: Install uv
84-
uses: astral-sh/setup-uv@v3
84+
uses: astral-sh/setup-uv@v7
8585
- uses: actions/setup-python@v6
8686
with:
8787
python-version: ${{ matrix.python-version }}
@@ -112,7 +112,7 @@ jobs:
112112
]
113113
target: [aarch64, armv7]
114114
steps:
115-
- uses: actions/checkout@v3
115+
- uses: actions/checkout@v6
116116
- name: Build Wheels
117117
uses: PyO3/maturin-action@v1
118118
env:
@@ -121,7 +121,7 @@ jobs:
121121
target: ${{ matrix.target }}
122122
manylinux: auto
123123
args: -i python${{matrix.python.version}} --release --out dist
124-
- uses: uraimo/run-on-arch-action@v2
124+
- uses: uraimo/run-on-arch-action@v3
125125
name: Install build wheel
126126
with:
127127
arch: ${{ matrix.target }}

.github/workflows/python-CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ jobs:
4141
name: ${{ matrix.os }} tests with python ${{ matrix.python-version }}
4242
runs-on: ${{ matrix.os }}-latest
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v6
4545
- name: Set up Python ${{ matrix.python-version }}
4646
uses: actions/setup-python@v6
4747
with:
4848
python-version: ${{ matrix.python-version }}
4949
cache: "pip"
5050
- uses: Swatinem/rust-cache@v2
5151
- name: Set up Nox
52-
uses: wntrblm/nox@2024.03.02
52+
uses: wntrblm/nox@2026.02.09
5353
with:
5454
python-versions: ${{ matrix.python-version }}
5555
- name: Test with Nox

.github/workflows/release-CI.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
matrix:
2222
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v6
2525
- name: Install uv
26-
uses: astral-sh/setup-uv@v3
26+
uses: astral-sh/setup-uv@v7
2727
- uses: actions/setup-python@v6
2828
with:
2929
python-version: ${{ matrix.python-version }}
@@ -45,7 +45,7 @@ jobs:
4545
uv pip install --force-reinstall dist/robyn*_universal2.whl
4646
cd ~ && python -c 'import robyn'
4747
- name: Upload wheels
48-
uses: actions/upload-artifact@v4
48+
uses: actions/upload-artifact@v7
4949
with:
5050
name: wheels-${{ github.job }}-universal-${{ matrix.python-version }}
5151
path: dist
@@ -56,9 +56,9 @@ jobs:
5656
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
5757
target: [x64, x86]
5858
steps:
59-
- uses: actions/checkout@v3
59+
- uses: actions/checkout@v6
6060
- name: Install uv
61-
uses: astral-sh/setup-uv@v3
61+
uses: astral-sh/setup-uv@v7
6262
- uses: actions/setup-python@v6
6363
with:
6464
python-version: ${{ matrix.python-version }}
@@ -75,7 +75,7 @@ jobs:
7575
uv pip install --force-reinstall dist/robyn*.whl
7676
cd ~ && python -c 'import robyn'
7777
- name: Upload wheels
78-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v7
7979
with:
8080
name: wheels-${{ github.job }}-${{ matrix.target }}-${{ matrix.python-version }}
8181
path: dist
@@ -86,10 +86,10 @@ jobs:
8686
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
8787
target: [x86_64, i686]
8888
steps:
89-
- uses: actions/checkout@v3
89+
- uses: actions/checkout@v6
9090
- uses: dtolnay/rust-toolchain@stable
9191
- name: Install uv
92-
uses: astral-sh/setup-uv@v3
92+
uses: astral-sh/setup-uv@v7
9393
- uses: actions/setup-python@v6
9494
with:
9595
python-version: ${{ matrix.python-version }}
@@ -105,7 +105,7 @@ jobs:
105105
uv pip install --force-reinstall dist/robyn*.whl
106106
cd ~ && python -c 'import robyn'
107107
- name: Upload wheels
108-
uses: actions/upload-artifact@v4
108+
uses: actions/upload-artifact@v7
109109
with:
110110
name: wheels-${{ github.job }}-${{ matrix.target }}-${{ matrix.python-version }}
111111
path: dist
@@ -123,7 +123,7 @@ jobs:
123123
]
124124
target: [aarch64, armv7]
125125
steps:
126-
- uses: actions/checkout@v3
126+
- uses: actions/checkout@v6
127127
- name: Build Wheels
128128
uses: PyO3/maturin-action@v1
129129
env:
@@ -133,7 +133,7 @@ jobs:
133133
manylinux: auto
134134
maturin-version: "v1.12.0"
135135
args: -i python${{matrix.python.version}} --release --out dist
136-
- uses: uraimo/run-on-arch-action@v2
136+
- uses: uraimo/run-on-arch-action@v3
137137
name: Install build wheel
138138
with:
139139
arch: ${{ matrix.target }}
@@ -156,7 +156,7 @@ jobs:
156156
python -m pip install --force-reinstall /artifacts/robyn*.whl
157157
cd ~ && python -c 'import robyn'
158158
- name: Upload wheels
159-
uses: actions/upload-artifact@v4
159+
uses: actions/upload-artifact@v7
160160
with:
161161
name: wheels-${{ github.job }}-${{ matrix.target }}-${{ matrix.python.version }}-${{ matrix.python.abi }}
162162
path: dist
@@ -167,7 +167,7 @@ jobs:
167167
if: always() && needs.macos.result == 'success' && needs.windows.result == 'success' && needs.linux.result == 'success' && (needs.linux-cross.result == 'success' || needs.linux-cross.result == 'skipped')
168168
steps:
169169
- name: Downloading all Artifacts
170-
uses: actions/download-artifact@v4
170+
uses: actions/download-artifact@v8
171171
with:
172172
path: artifacts
173173
pattern: wheels-*
@@ -176,7 +176,7 @@ jobs:
176176
echo "Listing directories"
177177
ls -R
178178
- name: Uploading Artifact's Bundle
179-
uses: actions/upload-artifact@v4
179+
uses: actions/upload-artifact@v7
180180
with:
181181
name: wheels
182182
path: artifacts
@@ -187,11 +187,11 @@ jobs:
187187
needs: [macos, windows, linux, linux-cross, merge]
188188
if: always() && needs.merge.result == 'success'
189189
steps:
190-
- uses: actions/download-artifact@v4
190+
- uses: actions/download-artifact@v8
191191
with:
192192
name: wheels
193193
- name: Install uv
194-
uses: astral-sh/setup-uv@v3
194+
uses: astral-sh/setup-uv@v7
195195
- uses: actions/setup-python@v6
196196
with:
197197
python-version: 3.x

.github/workflows/rust-CI.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
name: Check
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v6
3030
- uses: dtolnay/rust-toolchain@stable
3131
- uses: Swatinem/rust-cache@v2
3232
- run: cargo check
@@ -35,7 +35,7 @@ jobs:
3535
name: Test Suite
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v6
3939
- uses: dtolnay/rust-toolchain@stable
4040
- uses: Swatinem/rust-cache@v2
4141
- run: cargo test
@@ -44,7 +44,7 @@ jobs:
4444
name: Rustfmt
4545
runs-on: ubuntu-latest
4646
steps:
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v6
4848
- uses: dtolnay/rust-toolchain@stable
4949
with:
5050
components: rustfmt
@@ -54,7 +54,7 @@ jobs:
5454
name: Clippy
5555
runs-on: ubuntu-latest
5656
steps:
57-
- uses: actions/checkout@v4
57+
- uses: actions/checkout@v6
5858
- uses: dtolnay/rust-toolchain@stable
5959
with:
6060
components: clippy

0 commit comments

Comments
 (0)