Skip to content

Commit

Permalink
feat: using root user in runner container
Browse files Browse the repository at this point in the history
  • Loading branch information
Ani1357 committed Nov 19, 2024
1 parent 09baab2 commit c3b004f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ env:
jobs:
build-test-push-release:
if: "((contains(github.event.head_commit.message, 'chore(release)') && github.ref == 'refs/heads/main') || !contains(github.event.head_commit.message, 'chore(release)')) && !contains(github.event.head_commit.message, 'ci skip') && !startsWith(github.ref, 'refs/tags/')"
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
container:
image: linode/apl-tools:v2.8.2
options: --user 0 # See https://docs.github.com/en/actions/sharing-automations/creating-actions/dockerfile-support-for-github-actions#user
steps:
- name: Set env
run: |
Expand Down

0 comments on commit c3b004f

Please sign in to comment.