Skip to content

Commit 5017d63

Browse files
Bump the all group across 1 directory with 8 updates
Bumps the all group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) | `2.3.0` | `2.4.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `6` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `5` | `6` | | [crate-ci/typos](https://github.com/crate-ci/typos) | `1.32.0` | `1.38.1` | | [DeterminateSystems/update-flake-lock](https://github.com/determinatesystems/update-flake-lock) | `24` | `27` | 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/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) Updates `dependabot/fetch-metadata` from 2.3.0 to 2.4.0 - [Release notes](https://github.com/dependabot/fetch-metadata/releases) - [Commits](dependabot/fetch-metadata@v2.3.0...v2.4.0) 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 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) Updates `docker/build-push-action` from 5 to 6 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v5...v6) Updates `crate-ci/typos` from 1.32.0 to 1.38.1 - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](crate-ci/typos@v1.32.0...v1.38.1) Updates `DeterminateSystems/update-flake-lock` from 24 to 27 - [Release notes](https://github.com/determinatesystems/update-flake-lock/releases) - [Commits](DeterminateSystems/update-flake-lock@v24...v27) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: dependabot/fetch-metadata dependency-version: 2.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: docker/build-push-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: crate-ci/typos dependency-version: 1.38.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: DeterminateSystems/update-flake-lock dependency-version: '27' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 8228b3a commit 5017d63

20 files changed

+77
-77
lines changed

.github/workflows/audit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
security_audit:
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v6
2828

2929
- uses: rustsec/audit-check@v2
3030
with:
@@ -41,10 +41,10 @@ jobs:
4141
pull-requests: write
4242

4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v6
4545
if: github.event_name != 'pull_request'
4646

47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v6
4848
if: github.event_name == 'pull_request'
4949
with:
5050
# By default github will checkout a ref of the HEAD merged into the
@@ -71,7 +71,7 @@ jobs:
7171
7272
- name: Comment about audit fix PR on original PR
7373
if: github.event_name == 'pull_request' && steps.create-pull-request.outputs.pull-request-number
74-
uses: actions/github-script@v7
74+
uses: actions/github-script@v8
7575
with:
7676
github-token: ${{secrets.GITHUB_TOKEN}}
7777
script: |

.github/workflows/auto-merge-dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}}
1414
steps:
1515
- name: Dependabot metadata
16-
uses: dependabot/fetch-metadata@v2.3.0
16+
uses: dependabot/fetch-metadata@v2.4.0
1717
id: metadata
1818
with:
1919
github-token: '${{ secrets.GITHUB_TOKEN }}'

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
# Don't run on closed unmerged pull requests
1414
if: github.event.pull_request.merged
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
- name: Create backport pull requests
1818
uses: korthout/backport-action@v3

.github/workflows/benchmark-build.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: taiki-e/install-action@just
2121

2222
- name: Checkout Repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424

2525
- name: Enable Rust Caching
2626
uses: Swatinem/rust-cache@v2
@@ -39,7 +39,7 @@ jobs:
3939
cargo build --locked --release --features benchmarking,testing,embedded-db --bin espresso-dev-node
4040
4141
- name: Upload artifacts
42-
uses: actions/upload-artifact@v4
42+
uses: actions/upload-artifact@v5
4343
with:
4444
name: x86_64-unknown-linux-gnu-services-bench
4545
path: |
@@ -66,7 +66,7 @@ jobs:
6666
runs-on: buildjet-16vcpu-ubuntu-2204-arm
6767
steps:
6868
- name: Checkout Repository
69-
uses: actions/checkout@v4
69+
uses: actions/checkout@v6
7070

7171
- name: Enable Rust Caching
7272
uses: Swatinem/rust-cache@v2
@@ -83,7 +83,7 @@ jobs:
8383
cargo build --locked --release --features benchmarking,testing,embedded-db --bin espresso-dev-node
8484
8585
- name: Upload artifacts
86-
uses: actions/upload-artifact@v4
86+
uses: actions/upload-artifact@v5
8787
with:
8888
name: aarch64-unknown-linux-gnu-services-bench
8989
path: |
@@ -125,16 +125,16 @@ jobs:
125125
bridge-tag: ${{ steps.bridge.outputs.tags }}
126126
steps:
127127
- name: Checkout Repository
128-
uses: actions/checkout@v4
128+
uses: actions/checkout@v6
129129

130130
- name: Download executables AMD
131-
uses: actions/download-artifact@v4
131+
uses: actions/download-artifact@v6
132132
with:
133133
name: x86_64-unknown-linux-gnu-services-bench
134134
path: target/amd64/release
135135

136136
- name: Download executables ARM
137-
uses: actions/download-artifact@v4
137+
uses: actions/download-artifact@v6
138138
with:
139139
name: aarch64-unknown-linux-gnu-services-bench
140140
path: target/arm64/release
@@ -378,7 +378,7 @@ jobs:
378378
- uses: taiki-e/install-action@just
379379

380380
- name: Checkout Repository
381-
uses: actions/checkout@v4
381+
uses: actions/checkout@v6
382382

383383
- name: Pull docker images
384384
run: |

.github/workflows/build-crypto-helper.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Checkout Repository
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v6
3636

3737
- name: Install Rust
3838
uses: dtolnay/rust-toolchain@stable
@@ -72,14 +72,14 @@ jobs:
7272
fi
7373
7474
- name: Upload Artifact
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v5
7676
with:
7777
name: libespresso_crypto_helper-${{ matrix.target }}.${{ contains(matrix.target, 'apple-darwin') && 'dylib' || 'so' }}
7878
path: |
7979
target/lib/libespresso_crypto_helper-${{ matrix.target }}.${{ contains(matrix.target, 'apple-darwin') && 'dylib' || 'so' }}
8080
8181
- name: Upload sha256 files
82-
uses: actions/upload-artifact@v4
82+
uses: actions/upload-artifact@v5
8383
with:
8484
name: libespresso_crypto_helper-${{ matrix.target }}.${{ contains(matrix.target, 'apple-darwin') && 'dylib' || 'so' }}.sha256
8585
path: |
@@ -92,10 +92,10 @@ jobs:
9292

9393
steps:
9494
- name: Checkout repository
95-
uses: actions/checkout@v4
95+
uses: actions/checkout@v6
9696

9797
- name: Download all Artifacts
98-
uses: actions/download-artifact@v4
98+
uses: actions/download-artifact@v6
9999
with:
100100
path: target/lib
101101

.github/workflows/build-without-lockfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout Repository
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434

3535
# NOTE: no rust cache, this isn't a time critical job
3636

@@ -40,7 +40,7 @@ jobs:
4040
cargo check --all-targets
4141
4242
- name: Comment on PR
43-
uses: actions/github-script@v7
43+
uses: actions/github-script@v8
4444
if: failure() && github.event_name == 'pull_request'
4545
with:
4646
github-token: ${{secrets.GITHUB_TOKEN}}

.github/workflows/build.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
save-cache: true
6565

6666
steps:
67-
- uses: actions/checkout@v4
67+
- uses: actions/checkout@v6
6868
- uses: rui314/setup-mold@v1
6969

7070
- name: Enable Rust Caching
@@ -95,7 +95,7 @@ jobs:
9595
done
9696
9797
- name: Upload Artifacts
98-
uses: actions/upload-artifact@v4
98+
uses: actions/upload-artifact@v5
9999
with:
100100
name: amd-${{ matrix.binary }}
101101
path: |
@@ -127,7 +127,7 @@ jobs:
127127
save-cache: true
128128

129129
steps:
130-
- uses: actions/checkout@v4
130+
- uses: actions/checkout@v6
131131
- uses: rui314/setup-mold@v1
132132

133133
- name: Enable Rust Caching
@@ -156,7 +156,7 @@ jobs:
156156
done
157157
158158
- name: Upload Artifacts
159-
uses: actions/upload-artifact@v4
159+
uses: actions/upload-artifact@v5
160160
with:
161161
name: arm-${{ matrix.binary }}
162162
path: |
@@ -186,10 +186,10 @@ jobs:
186186

187187
steps:
188188
- name: Checkout Repository
189-
uses: actions/checkout@v4
189+
uses: actions/checkout@v6
190190

191191
- name: Download executables AMD
192-
uses: actions/download-artifact@v4
192+
uses: actions/download-artifact@v6
193193
with:
194194
pattern: amd-*
195195
path: target/amd64/release
@@ -230,15 +230,15 @@ jobs:
230230

231231
- name: Upload docker image artifact (on PRs)
232232
if: github.event_name == 'pull_request'
233-
uses: actions/upload-artifact@v4
233+
uses: actions/upload-artifact@v5
234234
with:
235235
name: ${{ matrix.service }}-docker-image
236236
path: ${{ runner.temp }}/${{ matrix.service }}.tar
237237
if-no-files-found: error
238238

239239
- name: Build and push docker (non-PR)
240240
if: github.event_name != 'pull_request'
241-
uses: docker/build-push-action@v5
241+
uses: docker/build-push-action@v6
242242
id: build
243243
with:
244244
context: .
@@ -261,7 +261,7 @@ jobs:
261261
262262
- name: Upload digest
263263
if: github.event_name != 'pull_request'
264-
uses: actions/upload-artifact@v4
264+
uses: actions/upload-artifact@v5
265265
with:
266266
name: "digests-${{ matrix.service }}-amd64"
267267
path: "${{ runner.temp }}/digests/*"
@@ -294,10 +294,10 @@ jobs:
294294

295295
steps:
296296
- name: Checkout Repository
297-
uses: actions/checkout@v4
297+
uses: actions/checkout@v6
298298

299299
- name: Download executables ARM
300-
uses: actions/download-artifact@v4
300+
uses: actions/download-artifact@v6
301301
with:
302302
pattern: arm-*
303303
path: target/arm64/release
@@ -342,7 +342,7 @@ jobs:
342342
ls -lah "${digest_dir}"
343343
344344
- name: Upload digest
345-
uses: actions/upload-artifact@v4
345+
uses: actions/upload-artifact@v5
346346
with:
347347
name: "digests-${{ matrix.service }}-arm64"
348348
path: "${{ runner.temp }}/digests/*"
@@ -388,7 +388,7 @@ jobs:
388388
password: ${{ secrets.GITHUB_TOKEN }}
389389

390390
- name: Download digests
391-
uses: actions/download-artifact@v4
391+
uses: actions/download-artifact@v6
392392
with:
393393
pattern: "digests-${{ matrix.service }}-*"
394394
path: "${{ runner.temp }}/digests"
@@ -424,11 +424,11 @@ jobs:
424424
runs-on: ubuntu-latest
425425
needs: [build-dockers-amd]
426426
steps:
427-
- uses: actions/checkout@v4
427+
- uses: actions/checkout@v6
428428
- uses: taiki-e/install-action@just
429429

430430
- name: Download artifacts
431-
uses: actions/download-artifact@v4
431+
uses: actions/download-artifact@v6
432432
with:
433433
path: ${{ runner.temp }}/docker-images
434434
pattern: "*-docker-image"
@@ -465,7 +465,7 @@ jobs:
465465
runs-on: ubuntu-latest
466466
needs: [build-dockers-amd, create-multiplatform-docker-image]
467467
steps:
468-
- uses: actions/checkout@v4
468+
- uses: actions/checkout@v6
469469
- uses: taiki-e/install-action@just
470470

471471
- name: Set docker image tag for compose

.github/workflows/cargo-features.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- just check-features-ci
3131
- just check-features-ci --tests
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434
- uses: ./.github/actions/free-disk-space
3535
- uses: taiki-e/install-action@cargo-hack
3636
- uses: taiki-e/install-action@just

.github/workflows/contracts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout Repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030
with:
3131
submodules: recursive
3232

@@ -92,7 +92,7 @@ jobs:
9292
nix-env: ""
9393
with-diff-test: false
9494
steps:
95-
- uses: actions/checkout@v4
95+
- uses: actions/checkout@v6
9696
with:
9797
submodules: recursive
9898
- uses: taiki-e/install-action@just

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout Repository
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434

3535
- uses: dtolnay/rust-toolchain@nightly
3636

0 commit comments

Comments
 (0)