Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/sf-pr-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
runs-on: ubuntu-latest
container:
image: ${{ inputs.container-image }}
# Runner file-command dirs are owned by the host runner user; non-root
# container users (e.g. sf-devcontainer's vscode) hit EACCES without this.
options: --user root
permissions:
contents: read
steps:
Expand Down Expand Up @@ -61,6 +64,9 @@ jobs:
runs-on: ubuntu-latest
container:
image: ${{ inputs.container-image }}
# Runner file-command dirs are owned by the host runner user; non-root
# container users (e.g. sf-devcontainer's vscode) hit EACCES without this.
options: --user root
permissions:
contents: read
steps:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/sf-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ jobs:
runs-on: ubuntu-latest
container:
image: ${{ inputs.container-image }}
# Runner file-command dirs are owned by the host runner user; non-root
# container users (e.g. sf-devcontainer's vscode) hit EACCES without this.
options: --user root
permissions:
contents: read
outputs:
Expand Down Expand Up @@ -217,6 +220,9 @@ jobs:
runs-on: ubuntu-latest
container:
image: ${{ inputs.container-image }}
# Runner file-command dirs are owned by the host runner user; non-root
# container users (e.g. sf-devcontainer's vscode) hit EACCES without this.
options: --user root
# The caller's environment gate (required reviewers) pauses this job; GitHub
# records the deployment automatically for environment-bound jobs.
environment:
Expand Down
Loading