Skip to content

Commit 1c9379a

Browse files
committed
Fix incorrect cache paths.
1 parent 148499b commit 1c9379a

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/solid-tests-suites.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -227,19 +227,19 @@ jobs:
227227
key: solid-nextcloud-docker-${{ matrix.nextcloud_version }}-${{ github.sha }}
228228
- uses: actions/cache@v4
229229
id: cache-docker-cookie
230-
with: {path: cache/, key: "${{ needs.docker-images.outputs.COOKIE_KEY }}"}
230+
with: {path: cache/cookie, key: "${{ needs.docker-images.outputs.COOKIE_KEY }}"}
231231
- uses: actions/cache@v4
232232
id: cache-docker-pubsub
233-
with: {path: cache/, key: "${{ needs.docker-images.outputs.PUBSUB_KEY }}"}
233+
with: {path: cache/pubsub, key: "${{ needs.docker-images.outputs.PUBSUB_KEY }}"}
234234
- uses: actions/cache@v4
235235
id: cache-docker-solid-crud-tests
236-
with: {path: cache/, key: "${{ needs.docker-images.outputs.SOLID_CRUD_TESTS_KEY }}"}
236+
with: {path: cache/tests, key: "${{ needs.docker-images.outputs.SOLID_CRUD_TESTS_KEY }}"}
237237
- uses: actions/cache@v4
238238
id: cache-docker-web-access-control-tests
239-
with: {path: cache/, key: "${{ needs.docker-images.outputs.WEB_ACCESS_CONTROL_TESTS_KEY }}"}
239+
with: {path: cache/tests, key: "${{ needs.docker-images.outputs.WEB_ACCESS_CONTROL_TESTS_KEY }}"}
240240
- uses: actions/cache@v4
241241
id: cache-docker-webid-provider-tests
242-
with: {path: cache/, key: "${{ needs.docker-images.outputs.WEBID_PROVIDER_TESTS_KEY }}"}
242+
with: {path: cache/tests, key: "${{ needs.docker-images.outputs.WEBID_PROVIDER_TESTS_KEY }}"}
243243

244244
- uses: docker/login-action@v3
245245
with:

0 commit comments

Comments
 (0)