You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I’m trying to use an image from Docker Hub, makarius/isabelle, for automated builds. However, checking out the repository fails with the error EACCES: permission denied, open '/__w/⟨repository-name⟩/⟨repository-name⟩/⟨uuid⟩.tar.gz'. A minimal workflow file that triggers this error is as follows:
name: Automated checkout
on: [push]
jobs:
checkout:
runs-on: ubuntu-latest
container: makarius/isabelle
steps:
- name: Check out repository
uses: actions/checkout@v2
The repository is downloaded using the GitHub REST API.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I’m trying to use an image from Docker Hub,
makarius/isabelle
, for automated builds. However, checking out the repository fails with the errorEACCES: permission denied, open '/__w/⟨repository-name⟩/⟨repository-name⟩/⟨uuid⟩.tar.gz'
. A minimal workflow file that triggers this error is as follows:The repository is downloaded using the GitHub REST API.
How can I fix this workflow?
Beta Was this translation helpful? Give feedback.
All reactions