Skip to content

Commit

Permalink
fix: apt-getの実行に特権を付与
Browse files Browse the repository at this point in the history
  • Loading branch information
totto2727 committed Apr 23, 2024
1 parent bf9ad59 commit 1dd6208
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/playwright-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install CJK Font
run: apt-get install fonts-noto
run: sudo apt-get update && sudo apt-get install fonts-noto

- uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playwright-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install CJK Font
run: apt-get install fonts-noto
run: sudo apt-get update && sudo apt-get install fonts-noto

- uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit 1dd6208

Please sign in to comment.