Skip to content

Commit 2284a53

Browse files
release: fixes
- Updated dependencies - Fixed invalid feed URL issue when adding URLs per line - Fixed issue with initial translation action
2 parents d9d235d + 1dc548b commit 2284a53

15 files changed

+446
-351
lines changed

.github/workflows/build-dev-artifacts.yml

+1-12
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,7 @@ jobs:
1717
git-sha-8: ${{ steps.retrieve-git-sha-8.outputs.sha8 }}
1818
steps:
1919
- name: Check out source files
20-
uses: actions/checkout@v2
21-
- name: Get Composer Cache Directory
22-
id: composer-cache
23-
run: |
24-
echo "::set-output name=dir::$(composer config cache-files-dir)"
25-
- name: Configure Composer cache
26-
uses: actions/cache@v1
27-
with:
28-
path: ${{ steps.composer-cache.outputs.dir }}
29-
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
30-
restore-keys: |
31-
${{ runner.os }}-composer-
20+
uses: actions/checkout@v4
3221
- name: Install composer deps
3322
env:
3423
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}

.github/workflows/test-e2e.yml

+4-14
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,11 @@ jobs:
1010
name: E2E
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v2
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
1515
with:
16-
node-version: '18'
17-
- uses: actions/cache@v2
18-
id: npm-and-build-cache
19-
with:
20-
path: |
21-
~/.cache/Cypress
22-
node_modules
23-
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
24-
restore-keys: |
25-
${{ runner.os }}-node-
16+
node-version: "18"
17+
cache: "npm"
2618
- name: Install npm deps
2719
run: |
2820
npm ci
@@ -41,5 +33,3 @@ jobs:
4133
path: artifacts
4234
retention-days: 1
4335
if-no-files-found: ignore
44-
45-

.github/workflows/test-php.yml

+2-24
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,7 @@ jobs:
1818
php-version: "7.4"
1919
extensions: simplexml
2020
- name: Checkout source code
21-
uses: actions/checkout@v2
22-
- name: Get Composer Cache Directory
23-
id: composer-cache
24-
run: |
25-
echo "::set-output name=dir::$(composer config cache-files-dir)"
26-
- name: Setup Composer cache
27-
uses: actions/cache@v1
28-
with:
29-
path: ${{ steps.composer-cache.outputs.dir }}
30-
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
31-
restore-keys: |
32-
${{ runner.os }}-composer-
21+
uses: actions/checkout@v4
3322
- name: Install composer
3423
run: |
3524
composer install --prefer-dist --no-progress
@@ -55,23 +44,12 @@ jobs:
5544
extensions: simplexml, mysql
5645
tools: phpunit-polyfills
5746
- name: Checkout source code
58-
uses: actions/checkout@v2
47+
uses: actions/checkout@v4
5948
- name: Install Subversion
6049
run: sudo apt-get update && sudo apt-get install -y subversion
6150
- name: Install WordPress Test Suite
6251
run: |
6352
bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1:${{ job.services.mysql.ports['3306'] }}
64-
- name: Get Composer Cache Directory
65-
id: composer-cache
66-
run: |
67-
echo "::set-output name=dir::$(composer config cache-files-dir)"
68-
- name: Setup Composer cache
69-
uses: actions/cache@v1
70-
with:
71-
path: ${{ steps.composer-cache.outputs.dir }}
72-
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
73-
restore-keys: |
74-
${{ runner.os }}-composer-
7553
- name: Install composer
7654
run: |
7755
composer install --prefer-dist --no-progress --no-dev

.wp-env.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"env": {
99
"tests": {
1010
"config": {
11-
"CYPRESS_TESTING": true
11+
"E2E_TESTING": true
1212
},
1313
"mappings": {
1414
"wp-content/themes/gutenberg-test-themes/twentytwentyone": "https://downloads.wordpress.org/theme/twentytwentyone.2.1.zip",

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@
4848
"wp-coding-standards/wpcs": "^3.1",
4949
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
5050
"phpcompatibility/phpcompatibility-wp": "^2.1",
51-
"yoast/phpunit-polyfills": "^3.0"
51+
"yoast/phpunit-polyfills": "^4.0"
5252
}
5353
}

composer.lock

+36-32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

feedzy-rss-feed.php

-2
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,6 @@ function feedzy_import_job_logs( $name, $msg, $type ) {
284284
}
285285
add_action( 'themeisle_log_event', 'feedzy_import_job_logs', 20, 3 );
286286

287-
add_filter( 'themeisle_sdk_enable_telemetry', '__return_true' );
288-
289287
add_filter(
290288
'feedzy_rss_feeds_float_widget_metadata', function () {
291289
return array(

0 commit comments

Comments
 (0)