From bca4bca85d0c88810826b6fcf05484604636df46 Mon Sep 17 00:00:00 2001 From: Matt Lantz Date: Wed, 24 Apr 2024 15:25:03 -0400 Subject: [PATCH 1/4] because of tests --- .github/workflows/style.yml | 6 +++--- .github/workflows/tests.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 94fd52c..46b8ad5 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -5,14 +5,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ['8.1'] + php-versions: ['8.2'] steps: - uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: '8.2' - name: Install Dependencies run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 20 - name: Install Node dependencies run: npm install --ignore-scripts diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e3a97b3..755582f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ['8.1'] + php-versions: ['8.2'] steps: - uses: actions/checkout@v2 @@ -20,7 +20,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: '8.2' coverage: 'xdebug' - name: Copy .env From e7cab59a3d56be2454d5780836892197f7d633dd Mon Sep 17 00:00:00 2001 From: Matt Lantz Date: Wed, 24 Apr 2024 15:53:07 -0400 Subject: [PATCH 2/4] Update style.yml --- .github/workflows/style.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 46b8ad5..019f0d6 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -1,5 +1,11 @@ -on: push -name: Code Style +name: Styles + +on: + push: + branches: [ main, develop ] + pull_request: + branches: [ main ] + jobs: php: runs-on: ubuntu-latest From fc60d4dc6b9de8d49639a4ec48b63f45d5d73a89 Mon Sep 17 00:00:00 2001 From: Matt Lantz Date: Wed, 24 Apr 2024 15:55:33 -0400 Subject: [PATCH 3/4] because of cicd --- .github/workflows/style.yml | 4 ++-- .github/workflows/tests.yml | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 019f0d6..8ba82f2 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -29,8 +29,8 @@ jobs: js: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: node-version: 20 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 755582f..3bf542f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,7 +15,10 @@ jobs: php-versions: ['8.2'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 20 - name: Setup PHP uses: shivammathur/setup-php@v2 From 4a5a2c3f7c217864b0616d916f528d0a9b6ba51e Mon Sep 17 00:00:00 2001 From: Matt Lantz Date: Wed, 24 Apr 2024 15:58:30 -0400 Subject: [PATCH 4/4] Changelog.md update --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d618757..b3bc6f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). ---- +## [v2.19.1] - 2024-04-24 + +### Changed +- General updates and CICD fixes + ## [v2.19.0] - 2024-04-24 ### Added