fix cache permissions (#31084)

* fix cache permissions

* chown
This commit is contained in:
Justin Newberry 2024-01-19 16:57:10 -05:00 committed by GitHub
parent 574fd03208
commit 18467c8383
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -43,4 +43,7 @@ runs:
# make the directory manually in case we didn't get a hit, so it doesn't fail on future steps
- id: scons-cache-setup
shell: bash
run: mkdir -p ${{ inputs.path }}
run: |
mkdir -p ${{ inputs.path }}
sudo chmod -R 777 ${{ inputs.path }}
sudo chown -R $USER ${{ inputs.path }}