Skip to content

Commit 5135bda

Browse files
deps(actions): bump actions/cache in the github-actions group (llm-d#788)
Bumps the github-actions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache 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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 530dfdf commit 5135bda

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
echo "build=$(docker volume inspect llm-d-gobuildcache -f '{{.Mountpoint}}')" >> $GITHUB_OUTPUT
4747
4848
- name: Cache Go modules and build cache
49-
uses: actions/cache@v4
49+
uses: actions/cache@v5
5050
with:
5151
path: |
5252
${{ steps.go-cache.outputs.mod }}
@@ -67,7 +67,7 @@ jobs:
6767
# compare-coverage.sh reports all components as "new" and exits 0.
6868
- name: Restore main branch coverage baseline
6969
if: github.event_name == 'pull_request'
70-
uses: actions/cache/restore@v4
70+
uses: actions/cache/restore@v5
7171
with:
7272
path: coverage/baseline
7373
key: coverage-main
@@ -93,7 +93,7 @@ jobs:
9393
9494
- name: Save coverage baseline (main branch only)
9595
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
96-
uses: actions/cache/save@v4
96+
uses: actions/cache/save@v5
9797
with:
9898
path: coverage/baseline
9999
key: coverage-main

0 commit comments

Comments
 (0)