|
@@ -15,6 +15,8 @@ jobs:
|
|
|
steps:
|
|
steps:
|
|
|
- name: Checkout
|
|
- name: Checkout
|
|
|
uses: actions/checkout@v6
|
|
uses: actions/checkout@v6
|
|
|
|
|
+ with:
|
|
|
|
|
+ persist-credentials: false
|
|
|
- name: Validate composer.json and composer.lock
|
|
- name: Validate composer.json and composer.lock
|
|
|
run: composer validate
|
|
run: composer validate
|
|
|
- name: Install dependencies
|
|
- name: Install dependencies
|
|
@@ -42,6 +44,8 @@ jobs:
|
|
|
# let's get started!
|
|
# let's get started!
|
|
|
- name: Checkout
|
|
- name: Checkout
|
|
|
uses: actions/checkout@v6
|
|
uses: actions/checkout@v6
|
|
|
|
|
+ with:
|
|
|
|
|
+ persist-credentials: false
|
|
|
|
|
|
|
|
# cache PHP extensions
|
|
# cache PHP extensions
|
|
|
- name: Setup cache environment
|
|
- name: Setup cache environment
|
|
@@ -121,7 +125,7 @@ jobs:
|
|
|
name: PHP configuration combination unit tests
|
|
name: PHP configuration combination unit tests
|
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
|
env:
|
|
env:
|
|
|
- php-version: '8.4'
|
|
|
|
|
|
|
+ php-version: '8.5'
|
|
|
extensions: gd, sqlite3
|
|
extensions: gd, sqlite3
|
|
|
extensions-cache-key-name: phpextensions
|
|
extensions-cache-key-name: phpextensions
|
|
|
|
|
|
|
@@ -130,6 +134,8 @@ jobs:
|
|
|
# let's get started!
|
|
# let's get started!
|
|
|
- name: Checkout
|
|
- name: Checkout
|
|
|
uses: actions/checkout@v6
|
|
uses: actions/checkout@v6
|
|
|
|
|
+ with:
|
|
|
|
|
+ persist-credentials: false
|
|
|
|
|
|
|
|
# cache PHP extensions
|
|
# cache PHP extensions
|
|
|
- name: Setup cache environment
|
|
- name: Setup cache environment
|
|
@@ -214,11 +220,13 @@ jobs:
|
|
|
|
|
|
|
|
- name: Checkout
|
|
- name: Checkout
|
|
|
uses: actions/checkout@v6
|
|
uses: actions/checkout@v6
|
|
|
|
|
+ with:
|
|
|
|
|
+ persist-credentials: false
|
|
|
|
|
|
|
|
- name: Setup Node
|
|
- name: Setup Node
|
|
|
uses: actions/setup-node@v6
|
|
uses: actions/setup-node@v6
|
|
|
with:
|
|
with:
|
|
|
- node-version: '18'
|
|
|
|
|
|
|
+ node-version: '20'
|
|
|
cache: 'npm'
|
|
cache: 'npm'
|
|
|
cache-dependency-path: 'js/package-lock.json'
|
|
cache-dependency-path: 'js/package-lock.json'
|
|
|
|
|
|