Skip to content

Commit 513eb78

Browse files
deps(actions): bump actions/cache in the github-actions group (llm-d#1845)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent fb5486a commit 513eb78

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
echo "build=$HOME/.cache/llm-d-gobuildcache" >> "$GITHUB_OUTPUT"
7979
8080
- name: Cache Go modules and build cache
81-
uses: actions/cache@v5
81+
uses: actions/cache@v6
8282
with:
8383
path: |
8484
${{ steps.go-cache.outputs.mod }}

.github/workflows/ci-pr-checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
echo "build=$HOME/.cache/llm-d-gobuildcache" >> "$GITHUB_OUTPUT"
8181
8282
- name: Cache Go modules and build cache
83-
uses: actions/cache@v5
83+
uses: actions/cache@v6
8484
with:
8585
path: |
8686
${{ steps.go-cache.outputs.mod }}
@@ -93,7 +93,7 @@ jobs:
9393
# components as new and exits 0.
9494
- name: Restore main branch coverage baseline
9595
if: github.event_name == 'pull_request'
96-
uses: actions/cache/restore@v5
96+
uses: actions/cache/restore@v6
9797
with:
9898
path: coverage/baseline
9999
key: coverage-main
@@ -179,7 +179,7 @@ jobs:
179179
180180
- name: Save coverage baseline (main branch only)
181181
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
182-
uses: actions/cache/save@v5
182+
uses: actions/cache/save@v6
183183
with:
184184
path: coverage/baseline
185185
key: coverage-main

0 commit comments

Comments
 (0)