From 48ed9e80f51a9e8fd97d9ff52737d71d1d601942 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli Date: Tue, 3 Sep 2024 09:32:57 +1200 Subject: [PATCH 1/4] MNT Update development dependencies --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 474bf5c..576b36f 100644 --- a/composer.json +++ b/composer.json @@ -5,11 +5,11 @@ "license": "BSD-3-Clause", "require": { "php": "^8.1", - "silverstripe/recipe-plugin": "2.x-dev", - "silverstripe/recipe-cms": "5.x-dev", - "silverstripe/blog": "4.x-dev", - "silverstripe/spamprotection": "4.x-dev", - "colymba/gridfield-bulk-editing-tools": "4.x-dev" + "silverstripe/recipe-plugin": "2.0.x-dev", + "silverstripe/recipe-cms": "5.3.x-dev", + "silverstripe/blog": "4.3.x-dev", + "silverstripe/spamprotection": "4.2.x-dev", + "colymba/gridfield-bulk-editing-tools": "4.1.x-dev" }, "require-dev": { "phpunit/phpunit": "^9.6", From 54414b79dfda431bf12cbc5f1e62e0c8c7918af1 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli Date: Tue, 10 Sep 2024 09:11:58 +1200 Subject: [PATCH 2/4] MNT Update release dependencies --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 576b36f..e42da07 100644 --- a/composer.json +++ b/composer.json @@ -5,11 +5,11 @@ "license": "BSD-3-Clause", "require": { "php": "^8.1", - "silverstripe/recipe-plugin": "2.0.x-dev", - "silverstripe/recipe-cms": "5.3.x-dev", - "silverstripe/blog": "4.3.x-dev", - "silverstripe/spamprotection": "4.2.x-dev", - "colymba/gridfield-bulk-editing-tools": "4.1.x-dev" + "silverstripe/recipe-plugin": "~2.0.1@stable", + "silverstripe/recipe-cms": "~5.3.0@beta", + "silverstripe/blog": "~4.3.0@beta", + "silverstripe/spamprotection": "~4.2.1@stable", + "colymba/gridfield-bulk-editing-tools": "~4.1.0@beta" }, "require-dev": { "phpunit/phpunit": "^9.6", From cabe853fda92071791376da2f87022d43ca78ba1 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli Date: Tue, 10 Sep 2024 09:12:01 +1200 Subject: [PATCH 3/4] MNT Update development dependencies --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index e42da07..576b36f 100644 --- a/composer.json +++ b/composer.json @@ -5,11 +5,11 @@ "license": "BSD-3-Clause", "require": { "php": "^8.1", - "silverstripe/recipe-plugin": "~2.0.1@stable", - "silverstripe/recipe-cms": "~5.3.0@beta", - "silverstripe/blog": "~4.3.0@beta", - "silverstripe/spamprotection": "~4.2.1@stable", - "colymba/gridfield-bulk-editing-tools": "~4.1.0@beta" + "silverstripe/recipe-plugin": "2.0.x-dev", + "silverstripe/recipe-cms": "5.3.x-dev", + "silverstripe/blog": "4.3.x-dev", + "silverstripe/spamprotection": "4.2.x-dev", + "colymba/gridfield-bulk-editing-tools": "4.1.x-dev" }, "require-dev": { "phpunit/phpunit": "^9.6", From fe1e48d205abad5e9de4b95b166fc580310ddc09 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli <36352093+GuySartorelli@users.noreply.github.com> Date: Wed, 2 Oct 2024 10:03:40 +1300 Subject: [PATCH 4/4] MNT Run module-standardiser (#60) --- .github/workflows/tag-patch-release.yml | 26 ------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/tag-patch-release.yml diff --git a/.github/workflows/tag-patch-release.yml b/.github/workflows/tag-patch-release.yml deleted file mode 100644 index dc2db2b..0000000 --- a/.github/workflows/tag-patch-release.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Tag patch release - -on: - # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch - workflow_dispatch: - inputs: - latest_local_sha: - description: The latest local sha - required: true - type: string - -permissions: {} - -jobs: - tagpatchrelease: - name: Tag patch release - # Only run cron on the silverstripe account - if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule') - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - name: Tag release - uses: silverstripe/gha-tag-release@v2 - with: - latest_local_sha: ${{ inputs.latest_local_sha }}