Skip to content

Commit

Permalink
Remove sudo from apt-get command in pre-merge workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene123tw committed Jan 14, 2025
1 parent 2b8a4e3 commit 5511175
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pre_merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
name: Intense-Unit-Test-with-Python${{ matrix.python-version }}
steps:
- name: Install dependencies
run: apt-get update && sudo apt-get install -y libsqlite3-0 libsqlite3-dev
run: apt-get update && apt-get install -y libsqlite3-0 libsqlite3-dev
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install Python
Expand Down

0 comments on commit 5511175

Please sign in to comment.