Skip to content

Commit 1363d34

Browse files
committed
Attempt bind mount to address cache write issues
Restoring the cache currently fails with permission issues. This is an attempt to address that.
1 parent 1dda311 commit 1363d34

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/codeql.yml

+6
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ jobs:
2525
- name: Checkout
2626
uses: actions/checkout@v4
2727

28+
29+
- name: Bind mount Nix store
30+
run: |
31+
mkdir "$RUNNER_TEMP/nix"
32+
sudo mount --bind "$RUNNER_TEMP/nix" /nix
33+
2834
- name: Cache Nix Store
2935
uses: actions/cache@v4
3036
id: cache

0 commit comments

Comments
 (0)