Skip to content

Commit ee96d12

Browse files
build(deps): bump the actions group with 4 updates
Bumps the actions group with 4 updates: [CodSpeedHQ/action](https://github.com/codspeedhq/action), [actions/setup-python](https://github.com/actions/setup-python), [actions/setup-node](https://github.com/actions/setup-node) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `CodSpeedHQ/action` from 3 to 4 - [Release notes](https://github.com/codspeedhq/action/releases) - [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md) - [Commits](CodSpeedHQ/action@v3...v4) 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/setup-node` from 4 to 5 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v5) 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) --- updated-dependencies: - dependency-name: CodSpeedHQ/action dependency-version: '4' 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: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major 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 ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 8664b99 commit ee96d12

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Build the benchmark target(s)
5656
run: cargo codspeed build
5757
- name: Run benchmarks
58-
uses: CodSpeedHQ/action@v3
58+
uses: CodSpeedHQ/action@v4
5959
with:
6060
run: cargo codspeed run
6161
token: ${{ secrets.CODSPEED_TOKEN }}

.github/workflows/binary-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
persist-credentials: false
149149
- name: Install Rust
150150
run: rustup update stable --no-self-update
151-
- uses: actions/setup-python@v5
151+
- uses: actions/setup-python@v6
152152
with:
153153
python-version: 3.x
154154
- name: Download built assets

.github/workflows/bump-n-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
with:
3232
token: ${{ secrets.BUMP_N_RELEASE }}
3333
fetch-depth: 0
34-
- uses: actions/setup-python@v5
34+
- uses: actions/setup-python@v6
3535
with:
3636
python-version: 3.x
37-
- uses: actions/setup-node@v4
37+
- uses: actions/setup-node@v5
3838
with:
3939
node-version: 20.x
4040
- run: yarn install

.github/workflows/node-js-packaging.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
steps:
7474
- uses: actions/checkout@v5
7575
- name: Setup node
76-
uses: actions/setup-node@v4
76+
uses: actions/setup-node@v5
7777
with:
7878
node-version: 22
7979
cache: yarn
@@ -194,7 +194,7 @@ jobs:
194194
steps:
195195
- uses: actions/checkout@v5
196196
- name: Setup node
197-
uses: actions/setup-node@v4
197+
uses: actions/setup-node@v5
198198
with:
199199
node-version: ${{ matrix.node }}
200200
cache: yarn
@@ -231,7 +231,7 @@ jobs:
231231
steps:
232232
- uses: actions/checkout@v5
233233
- name: Setup node
234-
uses: actions/setup-node@v4
234+
uses: actions/setup-node@v5
235235
with:
236236
node-version: ${{ matrix.node }}
237237
cache: yarn
@@ -294,7 +294,7 @@ jobs:
294294
steps:
295295
- uses: actions/checkout@v5
296296
- name: Setup node
297-
uses: actions/setup-node@v4
297+
uses: actions/setup-node@v5
298298
with:
299299
node-version: 22
300300
cache: yarn

.github/workflows/pre-commit-hooks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- uses: actions/checkout@v5
37-
- uses: actions/setup-node@v4
37+
- uses: actions/setup-node@v5
3838
with:
3939
node-version: 22
4040
cache: yarn

.github/workflows/python-packaging.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
target: ppc64le
6060
steps:
6161
- uses: actions/checkout@v5
62-
- uses: actions/setup-python@v5
62+
- uses: actions/setup-python@v6
6363
with:
6464
python-version: '3.x'
6565

@@ -110,7 +110,7 @@ jobs:
110110
target: x86
111111
steps:
112112
- uses: actions/checkout@v5
113-
- uses: actions/setup-python@v5
113+
- uses: actions/setup-python@v6
114114
with:
115115
python-version: '3.x'
116116
architecture: ${{ matrix.platform.target }}
@@ -138,7 +138,7 @@ jobs:
138138
target: aarch64
139139
steps:
140140
- uses: actions/checkout@v5
141-
- uses: actions/setup-python@v5
141+
- uses: actions/setup-python@v6
142142
with:
143143
python-version: '3.x'
144144
- name: Build wheels
@@ -157,7 +157,7 @@ jobs:
157157
runs-on: ubuntu-latest
158158
steps:
159159
- uses: actions/checkout@v5
160-
- uses: actions/setup-python@v5
160+
- uses: actions/setup-python@v6
161161
with:
162162
python-version: 3.x
163163
- name: Build sdist
@@ -185,15 +185,15 @@ jobs:
185185
merge-multiple: true
186186
- name: Setup Python
187187
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
188-
uses: actions/setup-python@v5
188+
uses: actions/setup-python@v6
189189
with:
190190
python-version: 3.x
191191
- name: Check distributions
192192
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
193193
run: pipx run twine check dist/*
194194
- name: Publish to PyPI
195195
if: startsWith(github.ref, 'refs/tags/')
196-
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc
196+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e
197197
with:
198198
attestations: true
199199
skip-existing: true

.github/workflows/run-dev-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
with:
5353
tool: cargo-nextest,cargo-llvm-cov,cargo-binstall
5454

55-
- uses: actions/setup-python@v5
55+
- uses: actions/setup-python@v6
5656
with:
5757
python-version: 3.x
5858

0 commit comments

Comments
 (0)