Skip to content

Commit 86f7acb

Browse files
committed
Merge branch 'gitea/test' into bugfix/serializer-timezone-japan-gitea
2 parents d9d2219 + 3adcdfb commit 86f7acb

File tree

10 files changed

+20
-100
lines changed

10 files changed

+20
-100
lines changed

.github/workflows/fabbot.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/integration-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ jobs:
160160
161161
steps:
162162
- name: Checkout
163-
uses: actions/checkout@v4
163+
uses: https://github.com/actions/checkout@v4
164164
with:
165165
fetch-depth: 0
166166

@@ -204,7 +204,7 @@ jobs:
204204
touch ./ftpusers/test/pub/example ./ftpusers/test/readme.txt
205205
206206
- name: Setup PHP
207-
uses: shivammathur/setup-php@v2
207+
uses: https://github.com/shivammathur/setup-php@v2
208208
with:
209209
coverage: "none"
210210
extensions: "json,couchbase-3.2.2,memcached,mongodb-1.12.0,redis,rdkafka,xsl,ldap,relay"
@@ -218,7 +218,7 @@ jobs:
218218
php -i
219219
220220
- name: Load fixtures
221-
uses: docker://bitnami/openldap
221+
uses: https://github.com/docker://bitnami/openldap
222222
with:
223223
entrypoint: /bin/bash
224224
args: -c "(/opt/bitnami/openldap/bin/ldapwhoami -H ldap://ldap:3389 -D cn=admin,dc=symfony,dc=com -w symfony||sleep 5) && /opt/bitnami/openldap/bin/ldapadd -H ldap://ldap:3389 -D cn=admin,dc=symfony,dc=com -w symfony -f src/Symfony/Component/Ldap/Tests/Fixtures/data/fixtures.ldif && /opt/bitnami/openldap/bin/ldapdelete -H ldap://ldap:3389 -D cn=admin,dc=symfony,dc=com -w symfony cn=a,ou=users,dc=symfony,dc=com"

.github/workflows/intl-data-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
steps:
4242
- name: Checkout
43-
uses: actions/checkout@v4
43+
uses: https://github.com/actions/checkout@v4
4444

4545
- name: Install system dependencies
4646
run: |
@@ -58,7 +58,7 @@ jobs:
5858
echo "SYMFONY_ICU_VERSION=$SYMFONY_ICU_VERSION" >> $GITHUB_ENV
5959
6060
- name: Setup PHP
61-
uses: shivammathur/setup-php@v2
61+
uses: https://github.com/shivammathur/setup-php@v2
6262
with:
6363
coverage: "none"
6464
extensions: "zip,intl-${{env.SYMFONY_ICU_VERSION}}"

.github/workflows/package-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-24.04
1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v4
17+
uses: https://github.com/actions/checkout@v4
1818

1919
- name: Fetch branch from where the PR started
2020
run: git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*

.github/workflows/phpunit-bridge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626

2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v4
29+
uses: https://github.com/actions/checkout@v4
3030

3131
- name: Setup PHP
32-
uses: shivammathur/setup-php@v2
32+
uses: https://github.com/shivammathur/setup-php@v2
3333
with:
3434
coverage: "none"
3535
php-version: "8.1"

.github/workflows/psalm.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ jobs:
2323
php-version: '8.4'
2424
steps:
2525
- name: Setup PHP
26-
uses: shivammathur/setup-php@v2
26+
uses: https://github.com/shivammathur/setup-php@v2
2727
with:
2828
php-version: ${{ env.php-version }}
2929
ini-values: "memory_limit=-1"
3030
coverage: none
3131

3232
- name: Checkout target branch
33-
uses: actions/checkout@v4
33+
uses: https://github.com/actions/checkout@v4
3434
with:
3535
ref: ${{ github.base_ref }}
3636

3737
- name: Checkout PR
38-
uses: actions/checkout@v4
38+
uses: https://github.com/actions/checkout@v4
3939

4040
- name: Install dependencies
4141
run: |

.github/workflows/scorecards.yml

Lines changed: 0 additions & 70 deletions
This file was deleted.

.github/workflows/unit-tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,18 @@ jobs:
4242
runs-on: ubuntu-24.04
4343

4444
steps:
45+
- name: Install Act dependencies
46+
if: ${{ env.ACT }}
47+
run: |
48+
apt-get update && apt-get install parallel -y
49+
4550
- name: Checkout
46-
uses: actions/checkout@v4
51+
uses: https://github.com/actions/checkout@v4
4752
with:
4853
fetch-depth: 2
4954

5055
- name: Setup PHP
51-
uses: shivammathur/setup-php@v2
56+
uses: https://github.com/shivammathur/setup-php@v2
5257
with:
5358
coverage: "none"
5459
ini-values: date.timezone=UTC,memory_limit=-1,default_socket_timeout=10,session.gc_probability=0,apc.enable_cli=1,zend.assertions=1

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
git config --global user.name "Symfony"
3535
3636
- name: Checkout
37-
uses: actions/checkout@v4
37+
uses: https://github.com/actions/checkout@v4
3838
with:
3939
fetch-depth: 2
4040

@@ -111,7 +111,7 @@ jobs:
111111
git config --global user.name "Symfony"
112112
113113
- name: Checkout
114-
uses: actions/checkout@v4
114+
uses: https://github.com/actions/checkout@v4
115115
with:
116116
fetch-depth: 2
117117

test

Whitespace-only changes.

0 commit comments

Comments
 (0)