(experiment) reset permissions before checking out

This commit is contained in:
Peter Squicciarini 2021-02-07 00:09:35 -08:00
parent 5d26e9d7f6
commit c9ae0c605f
No known key found for this signature in database
GPG key ID: B93D26A09E953403

View file

@ -32,6 +32,16 @@ jobs:
image: vscodium/vscodium-linux-build-agent:stretch-armhf
steps:
- name: Get Actions user id
id: get_uid
run: |
actions_user_id=`id -u $USER`
echo $actions_user_id
echo ::set-output name=uid::$actions_user_id
- name: Correct Ownership in GITHUB_WORKSPACE directory
uses: peter-murray/reset-workspace-ownership-action@v1
with:
user_id: ${{ steps.get_uid.outputs.uid }}
- uses: actions/checkout@v2
- name: Setup Node.js environment