Skip to content

Commit

Permalink
Update notifications cache clearing keys (#73)
Browse files Browse the repository at this point in the history
* Clear notifications transient on plugin_search

* Update dependencies

* Bump plugin version to 2.5.0

* Explicitly require PHP 7.4

Co-authored-by: Micah Wood <micah@wpscholar.com>
  • Loading branch information
earnjam and wpscholar authored Dec 18, 2020
1 parent d1295de commit dfe0f12
Show file tree
Hide file tree
Showing 8 changed files with 179 additions and 40 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
coverage: none
tools: composer, cs2pr

- name: Setup workflow context
id: workflow
working-directory: ${{ runner.temp }}
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ jobs:

- uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
coverage: none
tools: composer, cs2pr

- uses: technote-space/get-diff-action@v3
with:
SUFFIX_FILTER: .php
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/upload-artifact-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
coverage: none
tools: composer, cs2pr

- name: Setup Workflow Context
id: workflow
working-directory: ${{ runner.temp }}
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/upload-asset-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
coverage: none
tools: composer, cs2pr

- name: Setup Workflow Context
id: workflow
working-directory: ${{ runner.temp }}
Expand Down
4 changes: 2 additions & 2 deletions bluehost-wordpress-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Bluehost
* Description: This plugin integrates your WordPress site with the Bluehost control panel, including performance, security, and update features.
* Version: 2.4.0
* Version: 2.5.0
* Requires at least: 4.7
* Requires PHP: 5.6
* Author: Bluehost
Expand All @@ -27,7 +27,7 @@
}

// Define constants
define( 'BLUEHOST_PLUGIN_VERSION', '2.4.0' );
define( 'BLUEHOST_PLUGIN_VERSION', '2.5.0' );
define( 'BLUEHOST_PLUGIN_FILE', __FILE__ );
define( 'BLUEHOST_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'BLUEHOST_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Expand Down
Loading

0 comments on commit dfe0f12

Please sign in to comment.