Skip to content

Commit 9b4e35f

Browse files
chore(deps): bump the github-actions group across 1 directory with 6 updates
Bumps the github-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/setup-java](https://github.com/actions/setup-java) | `4` | `5` | | [agenthunt/conventional-commit-checker-action](https://github.com/agenthunt/conventional-commit-checker-action) | `2.0.0` | `2.0.1` | | [peter-evans/find-comment](https://github.com/peter-evans/find-comment) | `3` | `4` | | [peter-evans/create-or-update-comment](https://github.com/peter-evans/create-or-update-comment) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | 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 `actions/setup-java` from 4 to 5 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@v4...v5) Updates `agenthunt/conventional-commit-checker-action` from 2.0.0 to 2.0.1 - [Release notes](https://github.com/agenthunt/conventional-commit-checker-action/releases) - [Commits](agenthunt/conventional-commit-checker-action@v2.0.0...v2.0.1) Updates `peter-evans/find-comment` from 3 to 4 - [Release notes](https://github.com/peter-evans/find-comment/releases) - [Commits](peter-evans/find-comment@v3...v4) Updates `peter-evans/create-or-update-comment` from 4 to 5 - [Release notes](https://github.com/peter-evans/create-or-update-comment/releases) - [Commits](peter-evans/create-or-update-comment@v4...v5) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-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-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: agenthunt/conventional-commit-checker-action dependency-version: 2.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: peter-evans/find-comment dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: peter-evans/create-or-update-comment dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 90a347f commit 9b4e35f

5 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
# - x86_64-unknown-netbsd
4646
steps:
4747
- name: Checkout
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v6
4949
with:
5050
submodules: recursive
5151

@@ -82,7 +82,7 @@ jobs:
8282
- armv7-linux-androideabi
8383
steps:
8484
- name: Checkout
85-
uses: actions/checkout@v4
85+
uses: actions/checkout@v6
8686
with:
8787
submodules: recursive
8888

@@ -94,7 +94,7 @@ jobs:
9494
run: rustup target add ${{ matrix.target }}
9595

9696
- name: Setup Java
97-
uses: actions/setup-java@v4
97+
uses: actions/setup-java@v5
9898
with:
9999
distribution: 'temurin'
100100
java-version: '17'
@@ -128,7 +128,7 @@ jobs:
128128
- i686-unknown-linux-gnu
129129
steps:
130130
- name: Checkout
131-
uses: actions/checkout@v4
131+
uses: actions/checkout@v6
132132
with:
133133
submodules: recursive
134134

@@ -154,7 +154,7 @@ jobs:
154154
RUSTC_WRAPPER: "sccache"
155155
SCCACHE_GHA_ENABLED: "on"
156156
steps:
157-
- uses: actions/checkout@v4
157+
- uses: actions/checkout@v6
158158
with:
159159
fetch-depth: 0
160160
- name: Install sccache
@@ -186,7 +186,7 @@ jobs:
186186
RUSTC_WRAPPER: "sccache"
187187
SCCACHE_GHA_ENABLED: "on"
188188
steps:
189-
- uses: actions/checkout@v4
189+
- uses: actions/checkout@v6
190190
- uses: dtolnay/rust-toolchain@stable
191191
with:
192192
components: rustfmt
@@ -202,7 +202,7 @@ jobs:
202202
RUSTC_WRAPPER: "sccache"
203203
SCCACHE_GHA_ENABLED: "on"
204204
steps:
205-
- uses: actions/checkout@v4
205+
- uses: actions/checkout@v6
206206
- uses: dtolnay/rust-toolchain@master
207207
with:
208208
toolchain: nightly-2025-06-28
@@ -221,7 +221,7 @@ jobs:
221221
RUSTC_WRAPPER: "sccache"
222222
SCCACHE_GHA_ENABLED: "on"
223223
steps:
224-
- uses: actions/checkout@v4
224+
- uses: actions/checkout@v6
225225
- uses: dtolnay/rust-toolchain@stable
226226
with:
227227
components: clippy
@@ -248,7 +248,7 @@ jobs:
248248
RUSTC_WRAPPER: "sccache"
249249
SCCACHE_GHA_ENABLED: "on"
250250
steps:
251-
- uses: actions/checkout@v4
251+
- uses: actions/checkout@v6
252252
- uses: dtolnay/rust-toolchain@master
253253
with:
254254
toolchain: ${{ env.MSRV }}
@@ -264,7 +264,7 @@ jobs:
264264
name: cargo deny
265265
runs-on: ubuntu-latest
266266
steps:
267-
- uses: actions/checkout@v4
267+
- uses: actions/checkout@v6
268268
- uses: EmbarkStudios/cargo-deny-action@v2
269269
with:
270270
arguments: --workspace --all-features
@@ -275,6 +275,6 @@ jobs:
275275
timeout-minutes: 30
276276
runs-on: ubuntu-latest
277277
steps:
278-
- uses: actions/checkout@v4
278+
- uses: actions/checkout@v6
279279
- run: pip install --user codespell[toml]
280280
- run: codespell --ignore-words-list=ans,atmost,crate,inout,ratatui,ser,stayin,swarmin,worl --skip=CHANGELOG.md

.github/workflows/cleanup.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525
with:
2626
ref: generated-docs-preview
2727
- name: Clean docs branch

.github/workflows/commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
steps:
1515
- name: check-for-cc
1616
id: check-for-cc
17-
uses: agenthunt/conventional-commit-checker-action@v2.0.0
17+
uses: agenthunt/conventional-commit-checker-action@v2.0.1
1818
with:
1919
pr-title-regex: "^(.+)(?:(([^)s]+)))?!?: (.+)"

.github/workflows/docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
PREVIEW_PATH: pr/${{ github.event.pull_request.number || inputs.pr_number }}/docs
3030

3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v6
3333
- uses: dtolnay/rust-toolchain@master
3434
with:
3535
toolchain: nightly-2025-06-28
@@ -50,7 +50,7 @@ jobs:
5050
publish_branch: generated-docs-preview
5151

5252
- name: Find Docs Comment
53-
uses: peter-evans/find-comment@v3
53+
uses: peter-evans/find-comment@v4
5454
id: fc
5555
with:
5656
issue-number: ${{ github.event.pull_request.number || inputs.pr_number }}
@@ -62,7 +62,7 @@ jobs:
6262
run: echo "TIMESTAMP=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_ENV
6363

6464
- name: Create or Update Docs Comment
65-
uses: peter-evans/create-or-update-comment@v4
65+
uses: peter-evans/create-or-update-comment@v5
6666
with:
6767
issue-number: ${{ github.event.pull_request.number || inputs.pr_number }}
6868
comment-id: ${{ steps.fc.outputs.comment-id }}

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
RUSTC_WRAPPER: "sccache"
5454
steps:
5555
- name: Checkout
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v6
5757
with:
5858
submodules: recursive
5959
ref: ${{ inputs.git-ref }}
@@ -118,7 +118,7 @@ jobs:
118118

119119
- name: upload results
120120
if: ${{ failure() && inputs.flaky }}
121-
uses: actions/upload-artifact@v4
121+
uses: actions/upload-artifact@v7
122122
with:
123123
name: libtest_run_${{ github.run_number }}-${{ github.run_attempt }}-${{ matrix.name }}_${{ matrix.features }}_${{ matrix.rust }}.json
124124
path: output
@@ -157,7 +157,7 @@ jobs:
157157
RUSTC_WRAPPER: "sccache"
158158
steps:
159159
- name: Checkout
160-
uses: actions/checkout@v4
160+
uses: actions/checkout@v6
161161
with:
162162
submodules: recursive
163163
ref: ${{ inputs.git-ref }}
@@ -218,7 +218,7 @@ jobs:
218218

219219
- name: upload results
220220
if: ${{ failure() && inputs.flaky }}
221-
uses: actions/upload-artifact@v4
221+
uses: actions/upload-artifact@v7
222222
with:
223223
name: libtest_run_${{ github.run_number }}-${{ github.run_attempt }}-${{ matrix.name }}_${{ matrix.features }}_${{ matrix.rust }}.json
224224
path: output

0 commit comments

Comments
 (0)