Skip to content

Commit 3eb87bb

Browse files
dependabot[bot]evdenis
authored andcommitted
build(deps): bump actions/cache from 5 to 6 in the github-actions group
Bumps the github-actions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 178edec commit 3eb87bb

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
# is missing, so a restored cache skips the mmdebstrap bootstrap. Keyed on
3636
# the series list and the chroot builder, not package versions.
3737
- name: Cache sbuild chroots
38-
uses: actions/cache@v5
38+
uses: actions/cache@v6
3939
with:
4040
path: ~/.cache/sbuild
4141
key: sbuild-v1-${{ hashFiles('conf/distributions', 'scripts/make-chroot.sh') }}
@@ -52,7 +52,7 @@ jobs:
5252
# recent blob to build on top of. The matching save (gated to main pushes)
5353
# runs after the build, so PR runs restore but never write a duplicate blob.
5454
- name: Restore orig tarballs
55-
uses: actions/cache/restore@v5
55+
uses: actions/cache/restore@v6
5656
with:
5757
path: build/*.orig.tar.gz
5858
key: ${{ env.ORIG_KEY }}
@@ -61,7 +61,7 @@ jobs:
6161
6262
# Restore raw upstream artifacts; fetch() skips anything already present.
6363
- name: Restore upstream downloads
64-
uses: actions/cache/restore@v5
64+
uses: actions/cache/restore@v6
6565
with:
6666
path: downloads
6767
key: ${{ env.DOWNLOADS_KEY }}
@@ -85,14 +85,14 @@ jobs:
8585
# so a later Lint failure cannot discard freshly assembled origs/downloads.
8686
- name: Save orig tarballs
8787
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
88-
uses: actions/cache/save@v5
88+
uses: actions/cache/save@v6
8989
with:
9090
path: build/*.orig.tar.gz
9191
key: ${{ env.ORIG_KEY }}
9292

9393
- name: Save upstream downloads
9494
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
95-
uses: actions/cache/save@v5
95+
uses: actions/cache/save@v6
9696
with:
9797
path: downloads
9898
key: ${{ env.DOWNLOADS_KEY }}

0 commit comments

Comments
 (0)