From 25067547d6ea5ddd95899c57d391d713fc00a988 Mon Sep 17 00:00:00 2001 From: Darin Kotter Date: Tue, 27 Jun 2023 16:24:41 -0600 Subject: [PATCH 1/3] Update our deploy action to run under node 16. Update the checkout action to the latest version --- .github/workflows/dotorg-push-deploy.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dotorg-push-deploy.yml b/.github/workflows/dotorg-push-deploy.yml index 57ca85c..09635f4 100644 --- a/.github/workflows/dotorg-push-deploy.yml +++ b/.github/workflows/dotorg-push-deploy.yml @@ -1,18 +1,27 @@ name: Deploy to WordPress.org + on: release: types: [published] + jobs: tag: name: New release runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 + + - name: Setup node version + uses: actions/setup-node@v3 + with: + node-version: 16 + - name: Build run: | npm install npm run build + - name: WordPress Plugin Deploy id: deploy uses: 10up/action-wordpress-plugin-deploy@stable @@ -21,6 +30,7 @@ jobs: env: SVN_USERNAME: ${{ secrets.SVN_USERNAME }} SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} + - name: Upload release asset uses: actions/upload-release-asset@v1 env: From 2feede54791718f34afb50a7e052ff733308dfb2 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Tue, 27 Jun 2023 19:38:04 -0500 Subject: [PATCH 2/3] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f71f87..edcb7c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ All notable changes to this project will be documented in this file, per [the Ke - Bump WordPress minimum supported version from 5.7 to 6.1 (props [@barneyjeffries](https://github.com/barneyjeffries), [@jeffpaul](https://github.com/jeffpaul), [@iamdharmesh](https://github.com/iamdharmesh), [@Sidsector9](https://github.com/Sidsector9), [@vikrampm1](https://github.com/vikrampm1) via [#106](https://github.com/10up/convert-to-blocks/pull/106)). - Bump WordPress "tested up to" version 6.2 (props [@Sidsector9](https://github.com/Sidsector9) via [#115](https://github.com/10up/convert-to-blocks/pull/115)). - Updated the Dependency Review GitHub Action (props [@jeffpaul](https://github.com/jeffpaul) via [#109](https://github.com/10up/convert-to-blocks/pull/109)). +- WordPress.org Deploy action updated to use Node 16 (props [@dkotter](https://github.com/dkotter) via [#116](https://github.com/10up/convert-to-blocks/pull/116)). ## [1.1.1] - 2023-01-05 **Note that this release bumps the WordPress minimum version from 5.4 to 5.7 and the PHP minimum version from 7.0 to 7.4.** @@ -105,6 +106,7 @@ All notable changes to this project will be documented in this file, per [the Ke - Initial release of Convert to Blocks. [Unreleased]: https://github.com/10up/convert-to-blocks/compare/trunk...develop +[1.2.0]: https://github.com/10up/convert-to-blocks/compare/1.1.1...1.2.0 [1.1.1]: https://github.com/10up/convert-to-blocks/compare/1.1.0...1.1.1 [1.1.0]: https://github.com/10up/convert-to-blocks/compare/1.0.2...1.1.0 [1.0.2]: https://github.com/10up/convert-to-blocks/compare/1.0.1...1.0.2 From 377fb6d1276b762f70dffefd8368a6b93f7e9937 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Tue, 27 Jun 2023 19:38:34 -0500 Subject: [PATCH 3/3] Update readme.txt --- readme.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.txt b/readme.txt index 83b05d2..2672505 100644 --- a/readme.txt +++ b/readme.txt @@ -53,6 +53,7 @@ Nested / Inner Block support does not work with Gutenberg bundled with WordPress * **Changed:** Bump WordPress minimum supported version from 5.7 to 6.1 (props [@barneyjeffries](https://github.com/barneyjeffries), [@jeffpaul](https://github.com/jeffpaul), [@iamdharmesh](https://github.com/iamdharmesh), [@Sidsector9](https://github.com/Sidsector9), [@vikrampm1](https://github.com/vikrampm1) via [#106](https://github.com/10up/convert-to-blocks/pull/106)). * **Changed:** Bump WordPress "tested up to" version 6.2 (props [@Sidsector9](https://github.com/Sidsector9) via [#115](https://github.com/10up/convert-to-blocks/pull/115)). * **Changed:** Updated the Dependency Review GitHub Action (props [@jeffpaul](https://github.com/jeffpaul) via [#109](https://github.com/10up/convert-to-blocks/pull/109)). +* **Changed:** WordPress.org Deploy action updated to use Node 16 (props [@dkotter](https://github.com/dkotter) via [#116](https://github.com/10up/convert-to-blocks/pull/116)). = 1.1.1 - 2023-01-05 = **Note that this version bumps the minimum PHP version from 7.0 to 7.4 and the minimum WordPress version from 5.4 to 5.7.**