Skip to content

Commit 11c34e6

Browse files
Bump the actions group across 1 directory with 6 updates
Bumps the actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `6` | `7` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [CodSpeedHQ/action](https://github.com/codspeedhq/action) | `4.0.1` | `4.3.1` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | Updates `astral-sh/setup-uv` from 6 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v6...v7) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `CodSpeedHQ/action` from 4.0.1 to 4.3.1 - [Release notes](https://github.com/codspeedhq/action/releases) - [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md) - [Commits](CodSpeedHQ/action@v4.0.1...v4.3.1) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major 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: CodSpeedHQ/action dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent adf9ea3 commit 11c34e6

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- "3.11"
2626
steps:
2727
- uses: actions/checkout@v5
28-
- uses: astral-sh/setup-uv@v6
28+
- uses: astral-sh/setup-uv@v7
2929
with:
3030
enable-cache: true
3131
python-version: ${{ matrix.py }}
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- uses: actions/checkout@v5
41-
- uses: astral-sh/setup-uv@v6
41+
- uses: astral-sh/setup-uv@v7
4242
with:
4343
enable-cache: true
4444
- uses: dtolnay/[email protected]
@@ -56,18 +56,18 @@ jobs:
5656
steps:
5757
- uses: actions/checkout@v5
5858
- name: Set up Python
59-
uses: actions/setup-python@v5
59+
uses: actions/setup-python@v6
6060
with:
6161
python-version-file: ".python-version"
62-
- uses: astral-sh/setup-uv@v6
62+
- uses: astral-sh/setup-uv@v7
6363
with:
6464
enable-cache: true
6565
- uses: dtolnay/[email protected]
6666
- uses: Swatinem/rust-cache@v2
6767
- run: |
6868
export UV_PROJECT_ENVIRONMENT="${pythonLocation}"
6969
uv sync --extra test --locked
70-
- uses: CodSpeedHQ/action@v4.0.1
70+
- uses: CodSpeedHQ/action@v4.3.1
7171
with:
7272
token: ${{ secrets.CODSPEED_TOKEN }}
7373
# allow updating snapshots due to indeterministic benchmarks
@@ -78,7 +78,7 @@ jobs:
7878
runs-on: ubuntu-latest
7979
steps:
8080
- uses: actions/checkout@v5
81-
- uses: astral-sh/setup-uv@v6
81+
- uses: astral-sh/setup-uv@v7
8282
with:
8383
enable-cache: true
8484
- uses: dtolnay/[email protected]

.github/workflows/update-changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- name: Get PR details
1919
id: pr-details
20-
uses: actions/github-script@v7
20+
uses: actions/github-script@v8
2121
with:
2222
script: |
2323
const { data: pullRequest } = await github.rest.pulls.get({
@@ -37,7 +37,7 @@ jobs:
3737
token: ${{ secrets.GITHUB_TOKEN }}
3838

3939
- name: Set up Python
40-
uses: actions/setup-python@v5
40+
uses: actions/setup-python@v6
4141
with:
4242
python-version: '3.12'
4343

.github/workflows/version.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
command: build
7373
args: --release --sdist -o dist --find-interpreter
7474
- name: Upload wheels
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v5
7676
with:
7777
name: wheels-linux-${{ matrix.target }}
7878
path: dist
@@ -97,7 +97,7 @@ jobs:
9797
command: build
9898
args: --release --sdist -o dist --find-interpreter
9999
- name: Upload wheels
100-
uses: actions/upload-artifact@v4
100+
uses: actions/upload-artifact@v5
101101
with:
102102
name: wheels-linux
103103
path: dist
@@ -119,7 +119,7 @@ jobs:
119119
command: build
120120
args: --release -o dist --find-interpreter
121121
- name: Upload wheels
122-
uses: actions/upload-artifact@v4
122+
uses: actions/upload-artifact@v5
123123
with:
124124
name: wheels-windows
125125
path: dist
@@ -142,7 +142,7 @@ jobs:
142142
target: universal2-apple-darwin
143143
args: --release -o dist --find-interpreter
144144
- name: Upload wheels
145-
uses: actions/upload-artifact@v4
145+
uses: actions/upload-artifact@v5
146146
with:
147147
name: wheels-macos
148148
path: dist
@@ -153,7 +153,7 @@ jobs:
153153
if: startsWith(github.ref, 'refs/tags/') || (github.event_name == 'workflow_dispatch')
154154
needs: [macos, windows, linux, linux-cross, bump]
155155
steps:
156-
- uses: actions/download-artifact@v5
156+
- uses: actions/download-artifact@v6
157157
with:
158158
pattern: wheels-*
159159
merge-multiple: true

0 commit comments

Comments
 (0)