Skip to content

Commit d0be9b1

Browse files
authored
Merge branch '4.3' into dependabot/composer/knplabs/knp-paginator-bundle-6.8.0
2 parents 10be834 + 2760acb commit d0be9b1

22 files changed

+86
-86
lines changed

.github/actions/composer/action.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,10 @@ runs:
22
using: "Composite"
33
steps:
44
- name: Get Composer Cache Directory
5+
uses: actions/cache@v4
56
id: composer-cache
6-
run: |
7-
echo "::set-output name=dir::$(composer config cache-files-dir)"
8-
shell: bash
9-
10-
- uses: actions/cache@v3
117
with:
12-
path: ${{ steps.composer-cache.outputs.dir }}
8+
path: ${{ github.workspace }}/vendor
139
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
1410
restore-keys: |
1511
${{ runner.os }}-composer-

.github/codecov.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Do not fail GitHub Actions status check
2+
# https://docs.codecov.com/docs/quick-start#tips-and-tricks
3+
coverage:
4+
status:
5+
project:
6+
default:
7+
informational: true
8+
patch:
9+
default:
10+
informational: true

.github/workflows/coverage.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
phpunit:
1717
name: PHPUnit
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-24.04
1919
strategy:
2020
fail-fast: false
2121
matrix:
@@ -47,7 +47,7 @@ jobs:
4747

4848
- name: Setup pcov
4949
run: |
50-
sudo apt-fast install -y php8.3-pcov
50+
sudo apt-get install -y php8.3-pcov
5151
sudo phpenmod -s cli pcov
5252
5353
- name: Initialize Composer
@@ -82,7 +82,7 @@ jobs:
8282
path: coverage1.xml
8383
codeception:
8484
name: Codeception
85-
runs-on: ubuntu-22.04
85+
runs-on: ubuntu-24.04
8686
strategy:
8787
fail-fast: false
8888
matrix:
@@ -176,7 +176,7 @@ jobs:
176176
177177
- name: Setup pcov
178178
run: |
179-
sudo apt-fast install -y php8.3-pcov
179+
sudo apt-get install -y php8.3-pcov
180180
sudo phpenmod -s cli pcov
181181
182182
- name: Setup codeception

.github/workflows/deny-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
deploy:
1717
name: Deny check
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-24.04
1919
services:
2020
postgres:
2121
image: postgres:14

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
jobs:
66
deploy:
77
name: Deploy
8-
runs-on: ubuntu-22.04
8+
runs-on: ubuntu-24.04
99
services:
1010
postgres:
1111
image: postgres:14

.github/workflows/dockerbuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
operating-system: [ ubuntu-22.04 ]
22+
operating-system: [ ubuntu-24.04 ]
2323
php: [ '8.1', '8.2', '8.3' ]
2424
db: [ pgsql ]
2525
group: [ admin01 ]

.github/workflows/e2e-test-throttling.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
codeception:
1717
name: Codeception
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-24.04
1919
strategy:
2020
fail-fast: false
2121
matrix:

.github/workflows/e2e-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
codeception:
1717
name: Codeception
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-24.04
1919
strategy:
2020
fail-fast: false
2121
matrix:

.github/workflows/plugin-test.yml

Lines changed: 14 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
operating-system: [ ubuntu-22.04 ]
22+
operating-system: [ ubuntu-24.04 ]
2323
php: [ '8.1' ]
2424
db: [ pgsql, mysql ]
2525
method:
@@ -93,7 +93,7 @@ jobs:
9393
env:
9494
PGPASSWORD: 'password'
9595
run: |
96-
sudo apt-fast install -y postgresql-client
96+
sudo apt-get install -y postgresql-client
9797
psql eccube_db -h 127.0.0.1 -U postgres -c "update dtb_base_info set authentication_key='test';"
9898
9999
- name: Update baseinfo with mysql
@@ -159,7 +159,7 @@ jobs:
159159
strategy:
160160
fail-fast: false
161161
matrix:
162-
operating-system: [ ubuntu-22.04 ]
162+
operating-system: [ ubuntu-24.04 ]
163163
php: [ '8.1' ]
164164
db: [ pgsql, mysql ]
165165
method:
@@ -207,12 +207,10 @@ jobs:
207207
uses: actions/checkout@master
208208

209209
- name: Get Composer Cache Directory
210+
uses: actions/cache@v4
210211
id: composer-cache
211-
run: |
212-
echo "::set-output name=dir::$(composer config cache-files-dir)"
213-
- uses: actions/cache@v4
214212
with:
215-
path: ${{ steps.composer-cache.outputs.dir }}
213+
path: ${{ github.workspace }}/vendor
216214
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
217215
restore-keys: |
218216
${{ runner.os }}-composer-
@@ -242,7 +240,7 @@ jobs:
242240
env:
243241
PGPASSWORD: 'password'
244242
run: |
245-
sudo apt-fast install -y postgresql-client
243+
sudo apt-get install -y postgresql-client
246244
psql eccube_db -h 127.0.0.1 -U postgres -c "update dtb_base_info set authentication_key='test';"
247245
248246
- name: Update baseinfo with mysql
@@ -308,7 +306,7 @@ jobs:
308306
strategy:
309307
fail-fast: false
310308
matrix:
311-
operating-system: [ ubuntu-22.04 ]
309+
operating-system: [ ubuntu-24.04 ]
312310
php: [ '8.1' ]
313311
db: [ pgsql, mysql ]
314312
method:
@@ -357,11 +355,9 @@ jobs:
357355

358356
- name: Get Composer Cache Directory
359357
id: composer-cache
360-
run: |
361-
echo "::set-output name=dir::$(composer config cache-files-dir)"
362-
- uses: actions/cache@v4
358+
uses: actions/cache@v4
363359
with:
364-
path: ${{ steps.composer-cache.outputs.dir }}
360+
path: ${{ github.workspace }}/vendor
365361
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
366362
restore-keys: |
367363
${{ runner.os }}-composer-
@@ -391,7 +387,7 @@ jobs:
391387
env:
392388
PGPASSWORD: 'password'
393389
run: |
394-
sudo apt-fast install -y postgresql-client
390+
sudo apt-get install -y postgresql-client
395391
psql eccube_db -h 127.0.0.1 -U postgres -c "update dtb_base_info set authentication_key='test';"
396392
397393
- name: Update baseinfo with mysql
@@ -457,7 +453,7 @@ jobs:
457453
strategy:
458454
fail-fast: false
459455
matrix:
460-
operating-system: [ ubuntu-22.04 ]
456+
operating-system: [ ubuntu-24.04 ]
461457
php: [ '8.1' ]
462458
db: [ pgsql, mysql ]
463459
method:
@@ -509,11 +505,9 @@ jobs:
509505

510506
- name: Get Composer Cache Directory
511507
id: composer-cache
512-
run: |
513-
echo "::set-output name=dir::$(composer config cache-files-dir)"
514-
- uses: actions/cache@v4
508+
uses: actions/cache@v4
515509
with:
516-
path: ${{ steps.composer-cache.outputs.dir }}
510+
path: ${{ github.workspace }}/vendor
517511
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
518512
restore-keys: |
519513
${{ runner.os }}-composer-
@@ -543,7 +537,7 @@ jobs:
543537
env:
544538
PGPASSWORD: 'password'
545539
run: |
546-
sudo apt-fast install -y postgresql-client
540+
sudo apt-get install -y postgresql-client
547541
psql eccube_db -h 127.0.0.1 -U postgres -c "update dtb_base_info set authentication_key='test';"
548542
549543
- name: Update baseinfo with mysql

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
operating-system: [ ubuntu-22.04 ]
22+
operating-system: [ ubuntu-24.04 ]
2323
php: [ '8.1', '8.2', '8.3' ]
2424
db: [ mysql, pgsql, sqlite3 ]
2525
include:

0 commit comments

Comments
 (0)