We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e80cac commit 72f3fb0Copy full SHA for 72f3fb0
.github/workflows/ci.yaml
@@ -115,7 +115,7 @@ jobs:
115
- name: Checkout bpfilter
116
uses: actions/checkout@v2
117
- name: Restore the cached test results
118
- uses: actions/restore@v4
+ uses: actions/cache/restore@v4
119
with:
120
path: build/output/tests
121
key: tests-results
@@ -126,7 +126,7 @@ jobs:
126
- name: Build
127
run: make -C $GITHUB_WORKSPACE/build -j `nproc` e2e
128
- name: Cache the test results
129
- uses: actions/save@v4
+ uses: actions/cache/save@v4
130
if: matrix.host.arch == 'x64' && github.ref == 'refs/heads/main'
131
132
0 commit comments