Skip to content

Commit 69b61e7

Browse files
committed
appease coderabbit
1 parent f3bac58 commit 69b61e7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
run: go test -bench 'BenchmarkFib' | tee output.txt
9292
# Download previous benchmark result from cache
9393
- name: Download previous benchmark data
94-
uses: actions/cache/restore@v4
94+
uses: actions/cache/restore@v5
9595
with:
9696
fail-on-cache-miss: true
9797
path: ./cache/benchmark-data.json
@@ -109,7 +109,7 @@ jobs:
109109
fail-on-alert: true
110110
# Upload the updated cache file for the next job by actions/cache
111111
- name: Save benchmark JSON
112-
uses: actions/cache/save@v3
112+
uses: actions/cache/save@v5
113113
with:
114114
path: ./cache/benchmark-data.json
115115
# Include OS in key so that we don't compare benchmarks across different OSes
@@ -158,7 +158,7 @@ can be seen [here][commit-comment-workflow-example].
158158

159159
### Job Summary
160160

161-
Github Actions [Job Summaries](https://github.blog/2022-05-09-supercharging-github-actions-with-job-summaries/) are
161+
GitHub Actions [Job Summaries](https://github.blog/2022-05-09-supercharging-github-actions-with-job-summaries/) are
162162
also supported. In order to use Job Summaries, turn on the `summary-always` option.
163163

164164
```yaml

0 commit comments

Comments
 (0)