From d83d3eb111a56a28833f6923db2213e2276c5746 Mon Sep 17 00:00:00 2001 From: Ahmed Saleh Date: Fri, 18 Oct 2024 13:42:48 +0200 Subject: [PATCH 1/2] Upgrade actions/checkout@v2 to v3 Seems like v2 is unable to checkout and find branches from forked repos. This discussion mentions upgrading as solution https://github.com/actions/checkout/issues/551 :crossed_fingers: --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3069958..db192ad 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,7 @@ jobs: export NEW_VERSION=$(semver bump ${{ env.RELEASE }} $CURRENT) echo "VERSION=$NEW_VERSION" >> $GITHUB_ENV - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup git run: | git config user.email "pusher-ci@pusher.com" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ac6ee5f..5d885ad 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -36,7 +36,7 @@ jobs: - name: Run unit tests run: composer exec phpunit tests/unit - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: repository: pusher/public_actions path: .github/actions From 352acfa915adad066b9369a1377d0f8292553b0d Mon Sep 17 00:00:00 2001 From: Pusher CI Date: Fri, 18 Oct 2024 11:47:48 +0000 Subject: [PATCH 2/2] Bump to version 7.2.5 --- CHANGELOG.md | 4 ++++ src/Pusher.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 219be46..d04ad9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 7.2.5 + +* [CHANGED] Describe your change here. Look at CHANGELOG.md to see the format. + ## 7.2.4 * [Fixed] Timeout option is propagated to guzzle client diff --git a/src/Pusher.php b/src/Pusher.php index 72b6b8a..f11a6a3 100755 --- a/src/Pusher.php +++ b/src/Pusher.php @@ -19,7 +19,7 @@ class Pusher implements LoggerAwareInterface, PusherInterface /** * @var string Version */ - public static $VERSION = '7.2.4'; + public static $VERSION = '7.2.5'; /** * @var null|PusherCrypto