Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
Resolve dubious ownership error
Browse files Browse the repository at this point in the history
See these issues for more info:
* actions/checkout#1048
* actions/runner-images#6775
  • Loading branch information
kevincon committed Jan 22, 2023
1 parent a6bf41a commit e3bf699
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/pkg.yml
Expand Up @@ -30,8 +30,12 @@ jobs:
run: |
yum install --assumeyes https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm
yum install --assumeyes git gcc
# Work-around for https://github.com/actions/runner-images/issues/6775
- name: Change Owner of Container Working Directory
if: matrix.container
run: chown root:root .
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Init Hermit
run: ./bin/hermit env --raw >> $GITHUB_ENV
- name: Build
Expand Down

0 comments on commit e3bf699

Please sign in to comment.