1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-05 08:17:47 +02:00

[ticket/17504] Run apt-get update on runner lever rather than in bash scripts

PHPBB-17504
This commit is contained in:
rxu
2025-04-28 23:28:05 +07:00
parent f512af1823
commit 779bec5fcf
5 changed files with 16 additions and 4 deletions

View File

@@ -10,5 +10,4 @@
#
set -e
sudo apt-get update --allow-releaseinfo-change
sudo apt-get install -y parallel libimage-exiftool-perl

View File

@@ -11,7 +11,6 @@
set -e
set -x
sudo apt-get update --allow-releaseinfo-change
sudo apt-get install -q -y sphinxsearch
DIR=$(dirname "$0")

View File

@@ -10,5 +10,4 @@
#
set -e
sudo apt-get update --allow-releaseinfo-change
sudo apt-get install -y expect-dev

View File

@@ -11,7 +11,6 @@
set -e
set -x
sudo apt-get update --allow-releaseinfo-change
sudo apt-get install -y nginx coreutils
sudo service nginx stop

View File

@@ -28,6 +28,10 @@ jobs:
name: PHP ${{ matrix.php }} - ${{ matrix.db }}
steps:
- name: Update Ubuntu package lists
run: |
sudo apt-get update -y --allow-releaseinfo-change
- name: Checkout repository
uses: actions/checkout@v4
with:
@@ -158,6 +162,10 @@ jobs:
- 6379:6379
steps:
- name: Update Ubuntu package lists
run: |
sudo apt-get update -y --allow-releaseinfo-change
- name: Checkout repository
uses: actions/checkout@v4
@@ -299,6 +307,10 @@ jobs:
- 6379:6379
steps:
- name: Update Ubuntu package lists
run: |
sudo apt-get update -y --allow-releaseinfo-change
- name: Checkout repository
uses: actions/checkout@v4
@@ -397,6 +409,10 @@ jobs:
steps:
- name: Update Ubuntu package lists
run: |
sudo apt-get update -y --allow-releaseinfo-change
- name: Checkout repository
uses: actions/checkout@v4