Skip to content

Commit

Permalink
Fix apt-fast to apt
Browse files Browse the repository at this point in the history
  • Loading branch information
nanasess committed Dec 8, 2024
1 parent b5fb6e6 commit ec24e32
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:

- name: Create ADMIN_DIR
run: |
sudo apt-fast install -y sharutils
sudo apt install -y sharutils
echo "ADMIN_DIR=$(head -c 10 < /dev/random | uuencode -m - | tail -n 2 |head -n 1 | sed 's,[/+],_,g' | head -c10)/" >> $GITHUB_ENV
- name: Setup to EC-CUBE
Expand All @@ -88,7 +88,7 @@ jobs:
HTTP_URL: http://127.0.0.1:8085/
HTTPS_URL: http://127.0.0.1:8085/
run: |
sudo apt-fast install -y mysql-client postgresql-client
sudo apt install -y mysql-client postgresql-client
./eccube_install.sh ${DB}
- name: Run to PHPUnit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

# - name: Create ADMIN_DIR
# run: |
# sudo apt-fast install -y sharutils
# sudo apt install -y sharutils
# echo "ADMIN_DIR=$(head -c 10 < /dev/random | uuencode -m - | tail -n 2 |head -n 1 | sed 's,[/+],_,g' | head -c10)/" >> $GITHUB_ENV

- name: Setup environment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/penetration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

# - name: Create ADMIN_DIR
# run: |
# sudo apt-fast install -y sharutils
# sudo apt install -y sharutils
# echo "ADMIN_DIR=$(head -c 10 < /dev/random | uuencode -m - | tail -n 2 |head -n 1 | sed 's,[/+],_,g' | head -c10)/" >> $GITHUB_ENV

- name: Apply patchs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Create ADMIN_DIR
run: |
sudo apt-fast install -y sharutils
sudo apt install -y sharutils
echo "ADMIN_DIR=$(head -c 10 < /dev/random | uuencode -m - | tail -n 2 |head -n 1 | sed 's,[/+],_,g' | head -c10)/" >> $GITHUB_ENV
- name: Setup environment
Expand Down

0 comments on commit ec24e32

Please sign in to comment.